Skip to content

Commit

Permalink
Merge pull request #1531 from jluebbe/codecov-test
Browse files Browse the repository at this point in the history
github/workflows: upload test results to codecov
  • Loading branch information
Emantor authored Oct 21, 2024
2 parents 89c13b8 + 7658172 commit 71bfcd2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/reusable-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,18 @@ jobs:
ruff format --check --diff
- name: Test with pytest
run: |
pytest -r a --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
pytest -r a --cov-config .coveragerc --cov=labgrid --junitxml=junit.xml -o junit_family=legacy --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ inputs.python-version }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ inputs.python-version }}
- name: Build documentation
run: |
make -C doc clean
Expand Down

0 comments on commit 71bfcd2

Please sign in to comment.