Skip to content

Commit

Permalink
add checks to make sure things were deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
John Waller committed Mar 1, 2024
1 parent 45064d0 commit 8495ccf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python_live_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
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: |
rm -rf test/vcr_cassettes/*
echo ls test/vcr_cassettes/*
- name: Tests
run: pytest
Expand Down

0 comments on commit 8495ccf

Please sign in to comment.