diff options
author | Armin Rigo <arigo@tunes.org> | 2017-03-13 08:45:03 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2017-03-13 08:45:03 +0100 |
commit | e983854cc62685414cdee977f2a81b12c764390b (patch) | |
tree | 95ad481b39a4bee12e5f8206a5e515f4dd70f317 /testrunner/lib_python_tests.py | |
parent | Check in here test runners for the lib-python and the pypyjit steps (diff) | |
download | pypy-e983854cc62685414cdee977f2a81b12c764390b.tar.gz pypy-e983854cc62685414cdee977f2a81b12c764390b.tar.bz2 pypy-e983854cc62685414cdee977f2a81b12c764390b.zip |
fixes, also add app_level_tests.py
Diffstat (limited to 'testrunner/lib_python_tests.py')
-rw-r--r--[-rwxr-xr-x] | testrunner/lib_python_tests.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/testrunner/lib_python_tests.py b/testrunner/lib_python_tests.py index 2fcbccf187..6ffd2a6a53 100755..100644 --- a/testrunner/lib_python_tests.py +++ b/testrunner/lib_python_tests.py @@ -8,12 +8,15 @@ import sys, os import subprocess rootdir = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) +os.environ['PYTHONPATH'] = rootdir +os.environ['PYTEST_PLUGINS'] = '' popen = subprocess.Popen( [sys.executable, "pypy/test_all.py", - "--pypy=pypy/goal/pypy-c", - "--timeout=3600", - "--resultlog=cpython.log", "lib-python"], + "--pypy=pypy/goal/pypy-c", + "--timeout=3600", + "--resultlog=cpython.log", "lib-python", + ] + sys.argv[1:], cwd=rootdir) try: |