[pypy-commit] pypy py3.5: help testrunner find pypy3 exe on win32

mattip pypy.commits at gmail.com
Fri Sep 29 04:38:14 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r92498:48bda039069f
Date: 2017-09-29 11:37 +0300
http://bitbucket.org/pypy/pypy/changeset/48bda039069f/

Log:	help testrunner find pypy3 exe on win32

diff --git a/pypy/pytest-A.cfg b/pypy/pytest-A.cfg
--- a/pypy/pytest-A.cfg
+++ b/pypy/pytest-A.cfg
@@ -1,5 +1,8 @@
+import sys
 cherrypick = ['interpreter', 'objspace/test', 'objspace/std', 'module']
 
 interp = ['python']
-test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c']
-
+if sys.platform == 'win32':
+    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-cw.exe']
+else:
+    test_driver = ['test_all.py', '-A', '--python=goal/pypy3-c']


More information about the pypy-commit mailing list