Skip to content

Commit

Permalink
Don't resolve runner
Browse files Browse the repository at this point in the history
  • Loading branch information
asorbini committed Apr 16, 2024
1 parent 63407a2 commit 4892b80
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion uno/test/integration/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4892b80

Please sign in to comment.