diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-11-04 09:03:53 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-11-04 09:03:53 +0100 |
commit | 45550178ef6102aad81b75462df828e663f3c640 (patch) | |
tree | f8ad28d4aafe2bd0be029cc249620bfb44ff3097 | |
parent | 4c3a5f24c36d4436e615e362ffaf0403cab6c1d3 (diff) | |
download | cpython-git-45550178ef6102aad81b75462df828e663f3c640.tar.gz |
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.py | 2 |
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): |