Skip to content

Commit

Permalink
Publish unittest results
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierteres committed Oct 2, 2023
1 parent ae523f7 commit f477252
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,10 @@ jobs:
SRID: ${{ secrets.SRID }}
run: |
cd ${{github.workspace}}
python -m unittest tests
coverage run -m unittest tests
coverage xml -i
- name: Publish Unit Test Results
if: (success() || failure()) && matrix.python-version == '2.7' && github.event_name == 'pull_request'
uses: EnricoMi/publish-unit-test-result-action@v1
with:
files: ${{github.workspace}}/*.xml

0 comments on commit f477252

Please sign in to comment.