Skip to content

Commit 15335d3

Browse files
committed
IMPROVEMENT: use coverage instead of pytest to generate the codecov
1 parent 5f2c689 commit 15335d3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/codecov.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
pip install -U .
2323
2424
- name: Run tests and collect coverage
25-
run: pytest --cov MethodicConfigurator
25+
# run: pytest --cov MethodicConfigurator
26+
run: |
27+
coverage run -m pytest
28+
coverage xml -o unittests/coverage.xml
2629
2730
- name: Upload coverage report
2831
uses: codecov/[email protected]

0 commit comments

Comments
 (0)