Skip to content

Commit 1b25043

Browse files
author
Lucas Wojciechowski
committed
Fail gracefully when Coveralls fails
1 parent 5e4465a commit 1b25043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ done
3737

3838
# send coverage report to coveralls
3939
nyc report --reporter=lcov
40-
node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info
40+
(node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info) || true
4141

4242
# return original error code
4343
if [[ ${EXIT_CODE} != 0 ]]; then

0 commit comments

Comments
 (0)