Author: mattip <matti.pi...@gmail.com>
Branch: 
Changeset: r72021:cf7a32ba3aa5
Date: 2014-06-11 21:33 +0300
http://bitbucket.org/pypy/pypy/changeset/cf7a32ba3aa5/

Log:    document more of the test environment

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -233,6 +233,8 @@
     run_param.startup()
 
     N = run_param.parallel_runs
+    if N > 1:
+        out.write("running %d parallel test workers")
     failure = False
 
     for testname in testdirs:
@@ -353,7 +355,7 @@
                       help="configuration python file (optional)")
     parser.add_option("--root", dest="root", default=".",
                       help="root directory for the run")
-    parser.add_option("--parallel-runs", dest="parallel_runs", default=0,
+    parser.add_option("--parallel-runs", dest="parallel_runs", default=1,
                       type="int",
                       help="number of parallel test runs")
     parser.add_option("--dry-run", dest="dry_run", default=False,
@@ -389,6 +391,8 @@
         if py.path.local(config_py_file).check(file=1):
             print >>out, "using config", config_py_file
             execfile(config_py_file, run_param.__dict__)
+        else:
+            print >>out, "ignoring non-existant config", config_py_file
 
     if run_param.cherrypick:
         for p in run_param.cherrypick:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to