-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|