Skip to content

Commit

Permalink
generate xml
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Oct 30, 2023
1 parent 4624b26 commit ddf5ad2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
# for cython tests inplace installation is required
- name: build
run: CXXFLAGS=-DCYTHON_TRACE=1 pip install -e . -v
run: CXXFLAGS=-DCYTHON_TRACE_NOGIL=1 pip install -e . -v

- name: Test with pytest and generate coverage info
run: PYTHONPATH=$(pwd)/src coverage run -m pytest tests

- name: Print coverage report
run: coverage report
run: |
PYTHONPATH=$(pwd)/src coverage run -m pytest tests
coverage xml
coverage report
- uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit ddf5ad2

Please sign in to comment.