diff options
Diffstat (limited to 'tests/test_zipapp.py')
-rw-r--r-- | tests/test_zipapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_zipapp.py b/tests/test_zipapp.py index 2a17ade..8f90bf8 100644 --- a/tests/test_zipapp.py +++ b/tests/test_zipapp.py @@ -22,7 +22,7 @@ def call_zipapp(tmp_path_factory): pytest.skip("zipapp was introduced in python3.5") pyz = str(tmp_path_factory.mktemp(basename="zipapp") / "virtualenv.pyz") subprocess.check_call( - (_python("3"), os.path.join(HERE, "tasks/make_zipapp.py"), "--root", virtualenv.HERE, "--dest", pyz) + (sys.executable, os.path.join(HERE, "tasks/make_zipapp.py"), "--root", virtualenv.HERE, "--dest", pyz) ) def zipapp_make_env(path, python=None): |