summaryrefslogtreecommitdiff
path: root/Lib/test/libregrtest/runtest_mp.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-11-04 09:03:53 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-11-04 09:03:53 +0100
commit03fdef3cfb4b98ce8e532d8eda757516bd833724 (patch)
tree553442d36f08349316a33833fd1f1eb173ec9756 /Lib/test/libregrtest/runtest_mp.py
parent2f1646764a328499f4867c121ac3d0f1841a3208 (diff)
downloadcpython-03fdef3cfb4b98ce8e532d8eda757516bd833724.tar.gz
regrtest: display progress every 30 seconds (instead of 60 seconds) when
running tests in multiprocessing mode (-jN).
Diffstat (limited to 'Lib/test/libregrtest/runtest_mp.py')
-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 4473db4549..0ca7dd7a4f 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):