Private
Public Access
0
0

fix(test): add PID to workspace path for xdist worker isolation

This commit is contained in:
2026-06-09 21:45:02 -04:00
parent 35f4cecb9b
commit 38cb0f99b4
+1 -1
View File
@@ -16,7 +16,7 @@ if project_root not in sys.path:
sys.path.insert(0, project_root)
_RUN_ID = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
_RUN_WORKSPACE = Path(f"tests/artifacts/live_gui_workspace_{_RUN_ID}")
_RUN_WORKSPACE = Path(f"tests/artifacts/live_gui_workspace_{_RUN_ID}_{os.getpid()}")
thirdparty_dir = os.path.join(os.path.dirname(__file__), "..", "thirdparty")
if thirdparty_dir not in sys.path:
sys.path.insert(0, thirdparty_dir)