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 bc163c2 commit 0ca16a9Copy full SHA for 0ca16a9
hypothesis-python/tests/watchdog/test_database.py
@@ -42,6 +42,10 @@ def test_database_listener_directory():
42
)
43
44
45
+# seen flaky on test-win; we get *three* of the same save events in the first
46
+# assertion, which...is baffling, and posibly a genuine bug (most likely in
47
+# watchdog).
48
+@flaky(max_runs=2, min_passes=1)
49
def test_database_listener_multiplexed(tmp_path):
50
db = MultiplexedDatabase(
51
InMemoryExampleDatabase(), DirectoryBasedExampleDatabase(tmp_path)
0 commit comments