We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1202963 commit fd387edCopy full SHA for fd387ed
codeflash/discovery/pytest_new_process_discovery.py
@@ -56,6 +56,6 @@ def pytest_collection_modifyitems(self, items) -> None:
56
print(f"Failed to collect tests: {e!s}")
57
try:
58
with Path(pickle_path).open("wb") as f:
59
- pickle.dump((1, [], None), f, protocol=pickle.HIGHEST_PROTOCOL)
+ pickle.dump((-1, [], None), f, protocol=pickle.HIGHEST_PROTOCOL)
60
except Exception as pickle_error:
61
print(f"Failed to write failure pickle: {pickle_error!s}", file=sys.stderr)
0 commit comments