Skip to content

Commit

Permalink
Pytest cache must be updated every run
Browse files Browse the repository at this point in the history
  • Loading branch information
kvrigor committed Oct 24, 2024
1 parent cf024e8 commit 70eeff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,13 +226,13 @@ jobs:
- name: Save Pytest cache
id: cache-pytest-save
if: always() && steps.cache-pytest-restore.outputs.cache-hit != 'true'
if: always()
uses: actions/cache/save@v4
with:
key: ${{ steps.cache-pytest-restore.outputs.cache-primary-key }}
path: "./.pytest_cache"

- name: Remove test directory
if: ${{ always() }}
if: always()
run: |
rm -rf pytest

0 comments on commit 70eeff4

Please sign in to comment.