Skip to content

Commit ca1e0ef

Browse files
committed
Coverage report
1 parent ccb4e5c commit ca1e0ef

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/codacy-coverage-reporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# yamllint enable rule:line-length
5454
- name: List test files
5555
run: |
56-
ls *.{xml,html}
56+
ls *.{xml,html} 2>/dev/null
5757
# https://docs.codacy.com/coverage-reporter/
5858
- name: Run codacy-coverage-reporter
5959
run: |

.github/workflows/codeclimate_coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ jobs:
5353
python -m pytest . -v --cov-report term-missing --cov-report=xml --cov=./ --junitxml=junit.xml -o junit_family=legacy --debug
5454
debug: true
5555
# yamllint enable rule:line-length
56+
- name: List test files
57+
run: |
58+
ls *.{xml,html} 2>/dev/null

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# yamllint enable rule:line-length
6969
- name: List test files
7070
run: |
71-
ls *.{xml,html}
71+
ls *.{xml,html} 2>/dev/null
7272
- name: Upload test results to Codecov
7373
if: ${{ !cancelled() }}
7474
uses: codecov/test-results-action@v1

0 commit comments

Comments
 (0)