Skip to content

Commit a3de3fd

Browse files
Add codecov
add code-coverage utility
1 parent 6c2f608 commit a3de3fd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/unittest.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,10 @@ jobs:
2626
2727
- name: run tests using pytest
2828
run: |
29-
cd $GITHUB_WORKSPACE && pytest
29+
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
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pytest
2+
pytest-cov
23
pylint
34
openstacksdk
45
pre-commit

0 commit comments

Comments
 (0)