summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-11-04 08:03:53 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-11-04 08:03:53 (GMT)
commit45550178ef6102aad81b75462df828e663f3c640 (patch)
treef8ad28d4aafe2bd0be029cc249620bfb44ff3097
parent4c3a5f24c36d4436e615e362ffaf0403cab6c1d3 (diff)
downloadcpython-45550178ef6102aad81b75462df828e663f3c640.zip
cpython-45550178ef6102aad81b75462df828e663f3c640.tar.gz
cpython-45550178ef6102aad81b75462df828e663f3c640.tar.bz2
regrtest: display progress every 30 seconds (instead of 60 seconds) when
running tests in multiprocessing mode (-jN).
-rw-r--r--Lib/test/libregrtest/runtest_mp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/runtest_mp.py b/Lib/test/libregrtest/runtest_mp.py
index 4473db4..0ca7dd7 100644
--- a/Lib/test/libregrtest/runtest_mp.py
+++ b/Lib/test/libregrtest/runtest_mp.py
@@ -21,7 +21,7 @@ from test.libregrtest.setup import setup_tests
PROGRESS_MIN_TIME = 30.0 # seconds
# Display the running tests if nothing happened last N seconds
-PROGRESS_UPDATE = 60.0 # seconds
+PROGRESS_UPDATE = 30.0 # seconds
def run_test_in_subprocess(testname, ns):