File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 16
16
strategy :
17
17
fail-fast : false
18
18
matrix :
19
- python-version : ["3.8 ", "3.9 ", "3.10 "]
19
+ python-version : ["3.10 ", "3.11 ", "3.12 "]
20
20
21
21
env :
22
22
GITHUB_ACTION : 1
Original file line number Diff line number Diff line change 14
14
15
15
# how long to wait for metadata to be written to disk
16
16
# if running in GitHub Actions, wait longer
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
17
+ GH_ACTION_SNOOZE = 10.0
18
+ SNOOZE_TIME = GH_ACTION_SNOOZE if os .environ .get ("GITHUB_ACTION" ) else 0.1
20
19
# some tests need a longer snooze time
21
- LONG_SNOOZE = 10.0 if os .environ .get ("GITHUB_ACTION" ) else 3.0
20
+ LONG_SNOOZE = GH_ACTION_SNOOZE if os .environ .get ("GITHUB_ACTION" ) else 3.0
21
+ # Finder comments need more time to be written to disk
22
+ FINDER_COMMENT_SNOOZE = LONG_SNOOZE
22
23
23
24
def snooze (seconds : float = SNOOZE_TIME ) -> None :
24
25
"""Sleep for a bit to allow Finder to update metadata"""
You can’t perform that action at this time.
0 commit comments