File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,18 @@ jobs:
58
58
ruff format --check --diff
59
59
- name : Test with pytest
60
60
run : |
61
- pytest -r a --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
61
+ 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"
62
62
- name : Upload coverage to Codecov
63
63
uses : codecov/codecov-action@v4
64
64
with :
65
65
token : ${{ secrets.CODECOV_TOKEN }}
66
66
flags : ${{ inputs.python-version }}
67
+ - name : Upload test results to Codecov
68
+ if : ${{ !cancelled() }}
69
+ uses : codecov/test-results-action@v1
70
+ with :
71
+ token : ${{ secrets.CODECOV_TOKEN }}
72
+ flags : ${{ inputs.python-version }}
67
73
- name : Build documentation
68
74
run : |
69
75
make -C doc clean
You can’t perform that action at this time.
0 commit comments