@@ -45,7 +45,7 @@ def test_database_listener_directory():
45
45
# seen flaky on test-win; we get *three* of the same save events in the first
46
46
# assertion, which...is baffling, and possibly a genuine bug (most likely in
47
47
# watchdog).
48
- @flaky (max_runs = 2 , min_passes = 1 )
48
+ @flaky (max_runs = 5 , min_passes = 1 )
49
49
def test_database_listener_multiplexed (tmp_path ):
50
50
db = MultiplexedDatabase (
51
51
InMemoryExampleDatabase (), DirectoryBasedExampleDatabase (tmp_path )
@@ -96,7 +96,7 @@ def wait_for(condition, *, timeout=1, interval=0.01):
96
96
97
97
98
98
# 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 )
100
100
def test_database_listener_directory_explicit (tmp_path ):
101
101
db = DirectoryBasedExampleDatabase (tmp_path )
102
102
events = []
@@ -167,7 +167,7 @@ def listener(event):
167
167
168
168
169
169
# 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 )
171
171
def test_database_listener_directory_move (tmp_path ):
172
172
db = DirectoryBasedExampleDatabase (tmp_path )
173
173
events = []
0 commit comments