Skip to content

Commit d5b3744

Browse files
ci: don't fail CI if unable to upload the code coverage data
If a CI job can't upload coverage results to codecov.com it causes the CI to fail and code can't be merged.
1 parent 8b14ff0 commit d5b3744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
files: ./coverage.xml
8181
flags: ${{ matrix.toxenv }}
82-
fail_ci_if_error: true
82+
fail_ci_if_error: false
8383

8484
coverage:
8585
runs-on: ubuntu-20.04
@@ -101,4 +101,4 @@ jobs:
101101
with:
102102
files: ./coverage.xml
103103
flags: unit
104-
fail_ci_if_error: true
104+
fail_ci_if_error: false

0 commit comments

Comments
 (0)