Skip to content

Commit e763908

Browse files
committed
Raise timeout value for test_subprocess
1 parent 5406ecb commit e763908

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_subprocess.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,8 @@ def test_wait_timeout(self):
10791079
self.assertIn("0.0001", str(c.exception)) # For coverage of __str__.
10801080
# Some heavily loaded buildbots (sparc Debian 3.x) require this much
10811081
# time to start.
1082-
self.assertEqual(p.wait(timeout=3), 0)
1082+
# OBS might require even more
1083+
self.assertEqual(p.wait(timeout=10), 0)
10831084

10841085
def test_wait_endtime(self):
10851086
"""Confirm that the deprecated endtime parameter warns."""

0 commit comments

Comments
 (0)