summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2016-03-02 08:50:01 -0800
committerZac Medico <zmedico@gentoo.org>2016-03-02 08:51:18 -0800
commit6193b030737d23148e5b131ee771ddbb52a895cb (patch)
tree507c9a6c9a5e2eb742b05fd696b3fe62247d8218 /runtests
parent.travis.yml: fix metadata.dtd path (add cnf directory) (diff)
downloadportage-6193b030737d23148e5b131ee771ddbb52a895cb.tar.gz
portage-6193b030737d23148e5b131ee771ddbb52a895cb.tar.bz2
portage-6193b030737d23148e5b131ee771ddbb52a895cb.zip
runtests: support pypy3 (many failures with pypy3-2.4.0-r1)
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)