Skip to content

Commit c8e77fc

Browse files
ci: fix coverage badge wf and omit test files from unit test coverage
1 parent 3aaaaa5 commit c8e77fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coverage-badge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
poetry install --with test
2727
- name: Generate coverage report
2828
run: |
29-
coverage run -m pytest --omit="src/**/test_*.py,src/codeflare_sdk/common/utils/unit_test_support.py"
29+
coverage run --omit="src/**/test_*.py,src/codeflare_sdk/common/utils/unit_test_support.py" -m pytest
3030
3131
- name: Coverage Badge
3232
uses: tj-actions/coverage-badge-py@v2

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
poetry install --with test
2727
- name: Test with pytest and check coverage
2828
run: |
29-
coverage run -m pytest
29+
coverage run --omit="src/**/test_*.py,src/codeflare_sdk/common/utils/unit_test_support.py" -m pytest
3030
coverage=$(coverage report -m | tail -1 | tail -c 4 | head -c 2)
3131
if (( $coverage < 90 )); then echo "Coverage failed at ${coverage}%"; exit 1; else echo "Coverage passed, ${coverage}%"; fi
3232
- name: Upload to Codecov

0 commit comments

Comments
 (0)