Skip to content

Commit 8f6eeaf

Browse files
authored
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.
1 parent c94caca commit 8f6eeaf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/_test_multiprocessing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,8 @@ def __reduce__(self):
799799
q = self.Queue()
800800
q.put(NotSerializable())
801801
q.put(True)
802-
self.assertTrue(q.get(timeout=0.1))
802+
# bpo-30595: use a timeout of 1 second for slow buildbots
803+
self.assertTrue(q.get(timeout=1.0))
803804

804805
#
805806
#

0 commit comments

Comments
 (0)