Disable coverage on Travis (#6712)

This commit is contained in:
Ben Alpert
2016-05-05 17:14:26 -07:00
parent 873369cc7c
commit 82ab58ea03

View File

@@ -68,7 +68,9 @@ script:
fi
elif [ "$TEST_TYPE" = test ]; then
set -e
if [ "$TRAVIS_PULL_REQUEST" = false ]; then
# Disabling coverage because it's broken:
# https://travis-ci.org/facebook/react/jobs/128163922
if false; then
./node_modules/.bin/grunt jest:coverage
cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
else