aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'runtests')
-rwxr-xr-xruntests4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests b/runtests
index 89c6e143d..d492bc891 100755
--- a/runtests
+++ b/runtests
@@ -70,8 +70,8 @@ class Colors(object):
def get_python_executable(ver):
"""Find the right python executable for |ver|"""
- if ver == 'pypy':
- prog = 'pypy'
+ if ver in ('pypy', 'pypy3'):
+ prog = ver
else:
prog = 'python' + ver
return os.path.join(EPREFIX, 'usr', 'bin', prog)