]> granicus.if.org Git - python/commitdiff
bpo-30339: test_multiprocessing_main_handling timeout (#1593)
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 15 May 2017 16:14:42 +0000 (18:14 +0200)
committerGitHub <noreply@github.com>
Mon, 15 May 2017 16:14:42 +0000 (18:14 +0200)
test_multiprocessing_main_handling: increase the test_source timeout
from 10 seconds to 60 seconds, since the test fails randomly on busy
buildbots.

Lib/test/test_multiprocessing_main_handling.py

index 32593dab86da16c9bec3323aa9e73f13eca1a621..a9c5d69fae2df9f7ed99718b4e226280a7b1cf79 100644 (file)
@@ -58,7 +58,7 @@ if __name__ == '__main__':
     p = Pool(5)
     results = []
     p.map_async(f, [1, 2, 3], callback=results.extend)
-    deadline = time.time() + 10 # up to 10 s to report the results
+    deadline = time.time() + 60 # up to 60 s to report the results
     while not results:
         time.sleep(0.05)
         if time.time() > deadline: