Skip to content

Commit 0ca4a85

Browse files
committed
pythongh-126434: Support systems with high load (no accidental timeouts)
1 parent 2f90fb2 commit 0ca4a85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_multiprocessing_event/test_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_event_signal_handling(self):
3030
script = support.findfile("event_signal.py", subdir="multiprocessingdata")
3131
for x in range(10):
3232
try:
33-
exit_code = subprocess.call([sys.executable, script], stdout=subprocess.DEVNULL, timeout=3)
33+
exit_code = subprocess.call([sys.executable, script], stdout=subprocess.DEVNULL, timeout=30)
3434
assert exit_code == 0
3535
except subprocess.TimeoutExpired:
3636
assert False, 'subprocess.Timeoutexpired for event_signal.py'

0 commit comments

Comments
 (0)