Skip to content

Commit

Permalink
calculate coverage without njit
Browse files Browse the repository at this point in the history
closes #22
  • Loading branch information
michaelosthege committed May 25, 2020
1 parent 3d47160 commit 5a2fcee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
flake8 . --count --exit-zero --statistics
- name: Test with pytest
run: |
pytest --cov=./pyrff --cov-report term-missing pyrff/
- name: Run dedicated coverage step
if: matrix.python-version == 3.8
run: |
export NUMBA_DISABLE_JIT=1
pytest --cov=./pyrff --cov-report xml --cov-report term-missing pyrff/
- name: Upload coverage
uses: codecov/[email protected]
Expand Down

0 comments on commit 5a2fcee

Please sign in to comment.