We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9651ef commit 6784f20Copy full SHA for 6784f20
.github/workflows/reusable-unit-tests.yml
@@ -56,6 +56,10 @@ jobs:
56
- name: Test with pytest
57
run: |
58
pytest --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon"
59
+ - name: Upload coverage to Codecov
60
+ uses: codecov/codecov-action@v4
61
+ with:
62
+ token: ${{ secrets.CODECOV_TOKEN }}
63
- name: Build documentation
64
65
make -C doc clean
@@ -67,6 +71,3 @@ jobs:
67
71
# check README.rst separately
68
72
pip install rstcheck
69
73
rstcheck --ignore-languages=bash --report-level=WARNING README.rst
70
- - uses: codecov/codecov-action@v4
- with:
- token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments