Skip to content

Commit

Permalink
repeat on FileNotFoundError to fix flaky glob
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 20, 2023
1 parent f110e13 commit d1eb8ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: python -m pip install .[test]
- name: Test package
run: |
python -m pytest -vv tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|timeout|expired|connection|socket"
python -m pytest -vv tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|FileNotFoundError|timeout|expired|connection|socket"
- name: Run fsspec-xrootd tests from uproot latest release
run: |
Expand All @@ -75,7 +75,7 @@ jobs:
python -m pip install ./uproot[test]
# Install xrootd-fsspec again because it may have been overwritten by uproot
python -m pip install .[test]
python -m pytest -vv -k "xrootd" uproot/tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|timeout|expired|connection|socket"
python -m pytest -vv -k "xrootd" uproot/tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|FileNotFoundError|timeout|expired|connection|socket"
dist:
name: Distribution build
Expand Down

0 comments on commit d1eb8ba

Please sign in to comment.