Skip to content

Commit

Permalink
Store test results
Browse files Browse the repository at this point in the history
  • Loading branch information
tsterbak committed Aug 24, 2023
1 parent cb811bf commit 9f2dcd5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,10 @@ jobs:
- name: Test with pytest
run: |
pytest --cov=biaslyze tests/ --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html
- name: Upload pytest test results
uses: actions/upload-artifact@v3
with:
name: test-results
path: junit/test-results.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

0 comments on commit 9f2dcd5

Please sign in to comment.