Skip to content

Commit 3e6f99c

Browse files
committed
Fix/rewrite paths for codecov filename matching
1 parent da6e08a commit 3e6f99c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.codecov.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# show coverage in CI status, not as a comment.
1+
# show coverage in CI status, not as a comment.
22
comment: off
3+
fixes:
4+
- "*/site-packages/::"
35
coverage:
46
status:
57
project:
68
default:
79
target: auto
810
patch:
911
default:
10-
target: 20%
12+
target: 20%

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,5 @@ jobs:
120120
- name: "Upload code coverage stats"
121121
run: |
122122
pip install codecov
123-
pushd tests && codecov && popd
123+
pushd tests && codecov && cat
124+
cat /home/runner/work/repo2docker/repo2docker/tests/coverage.xml

0 commit comments

Comments
 (0)