From 8e62c0cb838b00878c4608cdf7160b16b24e10b8 Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Tue, 19 Feb 2019 07:49:58 +1030 Subject: [PATCH] coveralls: paper over service flakiness --- .travis/test-coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/test-coverage.sh b/.travis/test-coverage.sh index 7df8aa6a..a11515d4 100755 --- a/.travis/test-coverage.sh +++ b/.travis/test-coverage.sh @@ -31,5 +31,5 @@ echo "mode: set" > $ACC_OUT find . -maxdepth 10 -type d | while read d; do testCover $d || exit; done # Upload the coverage profile to coveralls.io -[ -n "$COVERALLS_TOKEN" ] && goveralls -coverprofile=$ACC_OUT -service=travis-ci -repotoken $COVERALLS_TOKEN +[ -n "$COVERALLS_TOKEN" ] && ( goveralls -coverprofile=$ACC_OUT -service=travis-ci -repotoken $COVERALLS_TOKEN || echo -e '\n\e[31mCoveralls failed.\n' )