Skip to content

Commit

Permalink
Reinstall upload XML coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
AuguB committed Dec 8, 2023
1 parent e99bff5 commit a0a1594
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- name: Run Tests with coverage and save report
run: |
coverage run -m pytest pytest/ --junitxml=report.xml --html=report.html
coverage xml -o coverage.xml
continue-on-error: true # Continue to the next step even if tests fail

- name: Upload HTML Report
Expand All @@ -44,4 +45,9 @@ jobs:
with:
name: test-report-xml
path: report.xml


- name: Upload Coverage Report
uses: actions/upload-artifact@v2
with:
name: coverage-report
path: coverage.xml

0 comments on commit a0a1594

Please sign in to comment.