Skip to content

Commit

Permalink
Disable coverage on Travis (#6712)
Browse files Browse the repository at this point in the history
(cherry picked from commit 82ab58e)
  • Loading branch information
sophiebits authored and zpao committed Jun 14, 2016
1 parent b3d3ae4 commit 2183e55
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@ script:
fi
elif [ "$TEST_TYPE" = test ]; then
set -e
./node_modules/.bin/grunt jest:normal
# 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
./node_modules/.bin/grunt jest:normal
fi
echo 'Testing in server-render (HTML generation) mode...'
printf '\nmodule.exports.useCreateElement = false;\n' \
>> src/renderers/dom/shared/ReactDOMFeatureFlags.js
Expand Down

0 comments on commit 2183e55

Please sign in to comment.