diff options
author | Victor Stinner <vstinner@python.org> | 2019-09-24 10:47:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 10:47:49 (GMT) |
commit | 99799c722065d0524f3ab0bc455e1938bb8dc60f (patch) | |
tree | c628c79ab189970fc9c000515ae9218d997a07d7 /Lib | |
parent | ef048517755db1f0d211fb6dfc655a8b412cc96f (diff) | |
download | cpython-99799c722065d0524f3ab0bc455e1938bb8dc60f.zip cpython-99799c722065d0524f3ab0bc455e1938bb8dc60f.tar.gz cpython-99799c722065d0524f3ab0bc455e1938bb8dc60f.tar.bz2 |
bpo-38212: Increase MP test_queue_feeder_donot_stop_onexc() timeout (GH-16348)
Multiprocessing tests: increase test_queue_feeder_donot_stop_onexc()
timeout from 1 to 60 seconds.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/_test_multiprocessing.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index c717d0a..b720a48 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -1128,8 +1128,7 @@ class _TestQueue(BaseTestCase): q = self.Queue() q.put(NotSerializable()) q.put(True) - # bpo-30595: use a timeout of 1 second for slow buildbots - self.assertTrue(q.get(timeout=1.0)) + self.assertTrue(q.get(timeout=TIMEOUT)) close_queue(q) with test.support.captured_stderr(): |