Skip to content

Commit

Permalink
do not run download cancel on live
Browse files Browse the repository at this point in the history
  • Loading branch information
John Waller committed Mar 1, 2024
1 parent 16aade8 commit dd01d66
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python_live_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Delete vcr cassettes so that it runs live tests
run: rm -rf test/vcr_cassettes/*
run: |
for file in test/vcr_cassettes/*; do
if [[ $file != "test/vcr_cassettes/test_download_cancel.yaml"]]; then
rm "$file"
fi
done
- name: Tests
run: pytest
Expand Down

0 comments on commit dd01d66

Please sign in to comment.