]> granicus.if.org Git - python/commitdiff
regrtest: display progress every 30 seconds (instead of 60 seconds) when
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 4 Nov 2015 08:03:53 +0000 (09:03 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 4 Nov 2015 08:03:53 +0000 (09:03 +0100)
running tests in multiprocessing mode (-jN).

Lib/test/libregrtest/runtest_mp.py

index 4473db45492fa29f3e9b582794ed71e816772161..0ca7dd7a4f5b78bca13e516042b9dfa91274b20c 100644 (file)
@@ -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):