Skip to content

Commit 86fcb1b

Browse files
committed
be even more generous with 'extra-time' to wait on MacOS
That way, flaky failures are hopefully reliably avoided.
1 parent 2b69bac commit 86fcb1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/test_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def test_blocking_lock_file(self):
400400
if os.name == "nt" or sys.platform == "cygwin":
401401
extra_time *= 6 # Without this, we get indeterministic failures on Windows.
402402
elif sys.platform == "darwin":
403-
extra_time *= 9 # The situation on macOS is similar, but with more delay.
403+
extra_time *= 18 # The situation on macOS is similar, but with more delay.
404404
self.assertLess(elapsed, wait_time + extra_time)
405405

406406
def test_user_id(self):

0 commit comments

Comments
 (0)