Skip to content

Commit 1365210

Browse files
committed
Fix coverage conversion to xml before upload
1 parent 73c095e commit 1365210

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
- name: Running tests
2121
run: poetry run coverage run --source=jaxdf -m pytest -xvs
2222
- name: Install coverage
23-
run: pip install coverage
24-
- name: "Upload combined coverage to Codecov"
23+
run: |
24+
pip install coverage
25+
coverage xml
26+
- name: "Upload coverage to Codecov"
2527
uses: codecov/codecov-action@v3
2628
with:
2729
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)