[pypy-commit] pypy win32-faulthandler: In this branch, hack the buildbot config to only run one test.

amauryfa pypy.commits at gmail.com
Thu Apr 6 08:06:25 EDT 2017


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: win32-faulthandler
Changeset: r90981:832db07f1970
Date: 2017-04-06 13:48 +0200
http://bitbucket.org/pypy/pypy/changeset/832db07f1970/

Log:	In this branch, hack the buildbot config to only run one test.

diff --git a/pypy/testrunner_cfg.py b/pypy/testrunner_cfg.py
--- a/pypy/testrunner_cfg.py
+++ b/pypy/testrunner_cfg.py
@@ -9,11 +9,7 @@
 ]
 
 def collect_one_testdir(testdirs, reldir, tests):
-    for dir in DIRS_SPLIT:
-        if reldir.startswith(dir):
-            testdirs.extend(tests)
-            break
-    else:
+    if reldir.startswith('module/faulthandler'):
         testdirs.append(reldir)
 
 


More information about the pypy-commit mailing list