We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2f608 commit a3de3fdCopy full SHA for a3de3fd
.github/workflows/unittest.yml
@@ -26,4 +26,10 @@ jobs:
26
27
- name: run tests using pytest
28
run: |
29
- cd $GITHUB_WORKSPACE && pytest
+ cd $GITHUB_WORKSPACE && pytest --cov --cov-report xml:coverage.xml
30
+
31
+ - name: Submit Coverage
32
+ uses: codecov/codecov-action@v5
33
+ with:
34
+ fail_ci_if_error: true
35
+ token: ${{secrets.CODECOV_TOKEN}}
requirements.txt
@@ -1,4 +1,5 @@
1
pytest
2
+pytest-cov
3
pylint
4
openstacksdk
5
pre-commit
0 commit comments