diff options
author | Bernat Gabor <bgabor8@bloomberg.net> | 2019-07-14 22:14:11 +0100 |
---|---|---|
committer | Bernat Gabor <bgabor8@bloomberg.net> | 2019-07-14 22:18:34 +0100 |
commit | 1d4702a9613ec4a877c86f9db57d6687492e9e6e (patch) | |
tree | 4eb12886ca1827cd5821ff61c51d512bb2ad199c /tests/test_zipapp.py | |
parent | b0e0aab54d56da1495a235ced0db7f0daa2a16c6 (diff) | |
download | virtualenv-release-16.1.2.tar.gz |
release 16.6.2release-16.1.2
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): |