We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5515c6e commit 7e1cf28Copy full SHA for 7e1cf28
graalpython/lib-python/3/test/test_subprocess.py
@@ -1592,7 +1592,8 @@ def test_run_with_shell_timeout_and_capture_output(self):
1592
stacks = traceback.format_exc() # assertRaises doesn't give this.
1593
else:
1594
self.fail("TimeoutExpired not raised.")
1595
- self.assertLess(after_secs - before_secs, 1.5,
+ # GraalVM change: increase the timing tolerance
1596
+ self.assertLess(after_secs - before_secs, 3.0,
1597
msg="TimeoutExpired was delayed! Bad traceback:\n```\n"
1598
f"{stacks}```")
1599
0 commit comments