# HG changeset patch # User Edd Barrett # Date 1573476423 0 # Mon Nov 11 12:47:03 2019 +0000 # Node ID c8a7030a105a6d8d39072e63a80639f417d86542 # Parent 97ee382c4e72c5f4cd9dafb41a907839583c4a3a Use the same Python for tests as the test runner was invoked with. diff --git a/tests/run.py b/tests/run.py --- a/tests/run.py +++ b/tests/run.py @@ -8,7 +8,7 @@ HERE = os.path.dirname(__file__) POOLE = [ - os.path.join(HERE, "..", "env", "bin", "python"), + os.path.join(HERE, "..", "env", "bin", sys.executable), os.path.join(HERE, "..", "poole.py"), ] ACTUAL = os.path.join(HERE, "actual")