From 4892b80c0c87b0d51b25904def7922b18215f343 Mon Sep 17 00:00:00 2001 From: Andrea Sorbini Date: Tue, 16 Apr 2024 00:55:59 -0700 Subject: [PATCH] Don't resolve runner --- uno/test/integration/experiment.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/uno/test/integration/experiment.py b/uno/test/integration/experiment.py index 226df9c..4831592 100644 --- a/uno/test/integration/experiment.py +++ b/uno/test/integration/experiment.py @@ -64,7 +64,9 @@ def __call__(self, **experiment_args) -> "Experiment": ... if _ExternalTestDir: _ExternalTestDir = Path(_ExternalTestDir).resolve() -_RunnerScript = Path(os.environ.get("TEST_RUNNER", "/uno/uno/test/integration/runner.py")).resolve() +# Don't resolve this path, because it might be "runner", +# passed by the Makefile +_RunnerScript = Path(os.environ.get("TEST_RUNNER", "/uno/uno/test/integration/runner.py")) class Experiment: