Skip to content

Commit

Permalink
pythongh-126434: Support systems with high load (no accidental timeouts)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarref committed Nov 12, 2024
1 parent 2f90fb2 commit 0ca4a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_multiprocessing_event/test_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_event_signal_handling(self):
script = support.findfile("event_signal.py", subdir="multiprocessingdata")
for x in range(10):
try:
exit_code = subprocess.call([sys.executable, script], stdout=subprocess.DEVNULL, timeout=3)
exit_code = subprocess.call([sys.executable, script], stdout=subprocess.DEVNULL, timeout=30)
assert exit_code == 0
except subprocess.TimeoutExpired:
assert False, 'subprocess.Timeoutexpired for event_signal.py'
Expand Down

0 comments on commit 0ca4a85

Please sign in to comment.