Skip to content

Commit

Permalink
do not let the build fail just because coveralls.io does.
Browse files Browse the repository at this point in the history
  • Loading branch information
cainus committed Mar 6, 2014
1 parent b5a62da commit 424311a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ test-cov:

test-coveralls:
echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
$(MAKE) test
@NODE_ENV=test ./node_modules/.bin/istanbul cover \
./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && \
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true

.PHONY: test

0 comments on commit 424311a

Please sign in to comment.