regrtest: display progress every 30 seconds (instead of 60 seconds) when

running tests in multiprocessing mode (-jN).
This commit is contained in:
Victor Stinner 2015-11-04 09:03:53 +01:00
parent 4c3a5f24c3
commit 45550178ef
1 changed files with 1 additions and 1 deletions

View 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):