Skip to content

Commit 9eb97e2

Browse files
committed
Fix cleanup
1 parent e5677c3 commit 9eb97e2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
env:
3232
FAST: ${{ startsWith(matrix.python-version, 'pypy') && '1' || '' }}
3333
run: |
34-
just --set python ${{ startsWith(matrix.python-version, 'pypy') && matrix.python-version || format('python{0}', matrix.python-version) }} cov
34+
just python=${{ startsWith(matrix.python-version, 'pypy') && matrix.python-version || format('python{0}', matrix.python-version) }} covcleanup="false" cov
3535
3636
- name: Upload coverage data
3737
uses: actions/upload-artifact@v4

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ covall:
2828
just python=python3.11 covcleanup=false cov
2929
just python=python3.12 covcleanup=false cov
3030
just python=python3.13 covcleanup=false cov
31-
just python=pypy3.9 covcleanup=false cov
31+
just python=pypy3.10 covcleanup=false cov
3232
uv run coverage combine
3333
uv run coverage report
3434
@rm .coverage*

0 commit comments

Comments
 (0)