Skip to content

Commit c8bb35b

Browse files
committed
even more flaky
1 parent c407568 commit c8bb35b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hypothesis-python/tests/watchdog/test_database.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_database_listener_directory():
4545
# seen flaky on test-win; we get *three* of the same save events in the first
4646
# assertion, which...is baffling, and possibly a genuine bug (most likely in
4747
# watchdog).
48-
@flaky(max_runs=2, min_passes=1)
48+
@flaky(max_runs=5, min_passes=1)
4949
def test_database_listener_multiplexed(tmp_path):
5050
db = MultiplexedDatabase(
5151
InMemoryExampleDatabase(), DirectoryBasedExampleDatabase(tmp_path)
@@ -96,7 +96,7 @@ def wait_for(condition, *, timeout=1, interval=0.01):
9696

9797

9898
# seen flaky on check-coverage (timeout in first wait_for)
99-
@flaky(max_runs=2, min_passes=1)
99+
@flaky(max_runs=5, min_passes=1)
100100
def test_database_listener_directory_explicit(tmp_path):
101101
db = DirectoryBasedExampleDatabase(tmp_path)
102102
events = []
@@ -167,7 +167,7 @@ def listener(event):
167167

168168

169169
# seen flaky on windows CI (timeout in wait_for)
170-
@flaky(max_runs=2, min_passes=1)
170+
@flaky(max_runs=5, min_passes=1)
171171
def test_database_listener_directory_move(tmp_path):
172172
db = DirectoryBasedExampleDatabase(tmp_path)
173173
events = []

0 commit comments

Comments
 (0)