Skip to content

Commit 24f978b

Browse files
committed
Do not fail if coveralls fails
1 parent 80f4b15 commit 24f978b

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
@@ -110,7 +110,7 @@ jobs:
110110
COVERALLS_PARALLEL: true
111111
run: |
112112
pip install tomli coveralls
113-
coveralls --service=github
113+
coveralls --service=github || true
114114
115115
finish:
116116
name: Coveralls Finished
@@ -125,7 +125,7 @@ jobs:
125125
- name: Coveralls Finished
126126
env:
127127
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
128-
run: coveralls --service=github --finish
128+
run: coveralls --service=github --finish || true
129129

130130
functional:
131131
name: Functional

0 commit comments

Comments
 (0)