From 38cb0f99b4960b6951fa029a8e8268559f579494 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Tue, 9 Jun 2026 21:45:02 -0400 Subject: [PATCH] fix(test): add PID to workspace path for xdist worker isolation --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index ec9712d7..22d7cd02 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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)