Skip to content

Commit

Permalink
ci: remove cache to fix coverage (#695)
Browse files Browse the repository at this point in the history
closes #694
  • Loading branch information
Eikix authored Feb 7, 2025
1 parent 7c2846a commit a24776d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ jobs:
key: ${{ runner.os }}-pytest-cache-${{ github.run_id }}
restore-keys: ${{ runner.os }}-pytest-cache-

- name: Run tests with caching
# TODO: remove --no-skip-cached-tests if/when we cache coverage
# <https://github.com/kkrt-labs/keth/issues/694>
- name: Run tests without caching
run: |
uv run --reinstall pytest -n logical --durations=0 -v -s --log-cli-level=DEBUG
uv run --reinstall pytest -n logical --durations=0 -v -s --log-cli-level=DEBUG --no-skip-cached-tests
- uses: actions/cache/save@v4
with:
Expand Down

0 comments on commit a24776d

Please sign in to comment.