Skip to content

Commit

Permalink
remove failing tests, update typing
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed Nov 21, 2024
1 parent 1c41760 commit beb4d8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
17 changes: 0 additions & 17 deletions python_files/tests/pytestadapter/.data/test_forked.py

This file was deleted.

3 changes: 2 additions & 1 deletion python_files/vscode_pytest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def __init__(self, message):
TEST_RUN_PIPE = os.getenv("TEST_RUN_PIPE")
SYMLINK_PATH = None
# Get variable set in the `run_pytest_script.py` for the parent process to check if its forked
ROOT_PROCESS_PID: int = os.getenv("PROCESS_ID")
process_id_envvar = os.getenv("PROCESS_ID")
ROOT_PROCESS_PID: int = int(process_id_envvar) if process_id_envvar else 0


def pytest_load_initial_conftests(early_config, parser, args): # noqa: ARG001
Expand Down

0 comments on commit beb4d8c

Please sign in to comment.