Commit 8f6eeaf2 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-30595: Increase test_queue_feeder_donot_stop_onexc() timeout (#2148)

_test_multiprocessing.test_queue_feeder_donot_stop_onexc() now uses a
timeout of 1 second on Queue.get(), instead of 0.1 second, for slow
buildbots.
parent c94caca6
...@@ -799,7 +799,8 @@ class _TestQueue(BaseTestCase): ...@@ -799,7 +799,8 @@ class _TestQueue(BaseTestCase):
q = self.Queue() q = self.Queue()
q.put(NotSerializable()) q.put(NotSerializable())
q.put(True) q.put(True)
self.assertTrue(q.get(timeout=0.1)) # bpo-30595: use a timeout of 1 second for slow buildbots
self.assertTrue(q.get(timeout=1.0))
# #
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment