Skip to content

Commit

Permalink
test: turn off pytest-cov on PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed May 2, 2024
1 parent 5072182 commit 6bc6cba
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,17 @@ jobs:
- name: Print NumPy version
run: python -c 'import numpy as np; print(np.__version__)'

- name: Test package
- name: Test package (PyPy)
if: matrix.python-version == 'pypy-3.10'
run: >-
python -m pytest -ra --durations=20
- name: Test package (CPython)
if: matrix.python-version != 'pypy-3.10'
run: >-
python -m pytest -ra --cov --cov-report=xml --cov-report=term
--durations=20
- name: Upload coverage report
if: matrix.python-version != 'pypy-3.10'
uses: codecov/[email protected]

0 comments on commit 6bc6cba

Please sign in to comment.