Disable coverage on PRs on Circle (#8569)

This commit is contained in:
Ben Alpert
2016-12-13 14:27:25 -08:00
committed by GitHub
parent 369769aed4
commit ec8b94e847
+3 -1
View File
@@ -3,4 +3,6 @@
set -e
./node_modules/.bin/grunt jest:coverage
cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
if [ -z $CI_PULL_REQUEST ]; then
cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
fi