From: Victor Stinner Date: Wed, 4 Nov 2015 08:03:53 +0000 (+0100) Subject: regrtest: display progress every 30 seconds (instead of 60 seconds) when X-Git-Tag: v3.6.0a1~1126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45550178ef6102aad81b75462df828e663f3c640;p=python regrtest: display progress every 30 seconds (instead of 60 seconds) when running tests in multiprocessing mode (-jN). --- 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):