Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 19cc258

Browse files
committed
Update codeclimate_coverage.yml
1 parent 49f49d3 commit 19cc258

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/codeclimate_coverage.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,18 @@ jobs:
4343
- name: Check pytest, pytest-cov version
4444
run: |
4545
python -m pytest --version
46+
- name: Generate coverage report
47+
# yamllint disable rule:line-length
48+
run: |
49+
python -m pytest . -v --cov-report term-missing --cov-report=lcov --cov=./ --debug
50+
# yamllint enable rule:line-length
51+
- name: List test files
52+
run: |
53+
ls *.lcov
4654
- name: Upload coverage to Code Climate
4755
uses: qltysh/qlty-action/coverage@main
4856
with:
4957
coverage-token: ${{ secrets.qlty_coverage_token }}
5058
files: reports/lcov.info
51-
# yamllint disable rule:line-length
5259
coverageCommand:
53-
python -m pytest . -v --cov-report term-missing --cov-report=lcov --cov=./ --debug
5460
debug: true
55-
# yamllint enable rule:line-length
56-
- name: List test files
57-
run: |
58-
ls *.lcov

0 commit comments

Comments
 (0)