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 599735b commit 5262695Copy full SHA for 5262695
tests/conftest.py
@@ -17,8 +17,8 @@
17
SNOOZE_TIME = 0.5 if os.environ.get("GITHUB_ACTION") else 0.1
18
# Finder comments need more time to be written to disk
19
FINDER_COMMENT_SNOOZE = 2.0
20
-LONG_SNOOZE = 3.0 # some tests need a longer snooze time
21
-
+# some tests need a longer snooze time
+LONG_SNOOZE = 10.0 if os.environ.get("GITHUB_ACTION") else 3.0
22
23
def snooze(seconds: float = SNOOZE_TIME) -> None:
24
"""Sleep for a bit to allow Finder to update metadata"""
0 commit comments