Skip to content

Commit 99799c7

Browse files
authored
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.
1 parent ef04851 commit 99799c7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Lib/test/_test_multiprocessing.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,8 +1128,7 @@ def __reduce__(self):
11281128
q = self.Queue()
11291129
q.put(NotSerializable())
11301130
q.put(True)
1131-
# bpo-30595: use a timeout of 1 second for slow buildbots
1132-
self.assertTrue(q.get(timeout=1.0))
1131+
self.assertTrue(q.get(timeout=TIMEOUT))
11331132
close_queue(q)
11341133

11351134
with test.support.captured_stderr():
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Multiprocessing tests: increase test_queue_feeder_donot_stop_onexc() timeout
2+
from 1 to 60 seconds.

0 commit comments

Comments
 (0)