aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2019-05-27 09:51:39 +0300
committerMatti Picus <matti.picus@gmail.com>2019-05-27 09:51:39 +0300
commitbefb99a8865a7c39a4b7f7adaa50b3228dc57fbc (patch)
tree3c6f5d45196ab0f106174d3e8d1e8d7f700badb7 /testrunner
parentfix test for extra ops after shadowstack-issue2722 (diff)
downloadpypy-befb99a8865a7c39a4b7f7adaa50b3228dc57fbc.tar.gz
pypy-befb99a8865a7c39a4b7f7adaa50b3228dc57fbc.tar.bz2
pypy-befb99a8865a7c39a4b7f7adaa50b3228dc57fbc.zip
the virtualenv issue was resolved so now win32 uses venv/Scripts/pypy-c.exe
Diffstat (limited to 'testrunner')
-rw-r--r--testrunner/get_info.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py
index 6f6283e32c..c24aa7b48e 100644
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -10,8 +10,7 @@ import json
BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
if sys.platform.startswith('win'):
TARGET_NAME = r'pypy-c.exe'
- # see https://github.com/pypa/virtualenv/issues/789
- TARGET_DIR = 'bin'
+ TARGET_DIR = 'Scripts'
else:
TARGET_NAME = 'pypy-c'
TARGET_DIR = 'bin'