Don't run coverage on pull requests (#4710)

It's not reliable enough yet.
This commit is contained in:
Adam Barth 2016-06-22 17:52:08 -07:00 committed by GitHub
parent 73cd70f776
commit 4f133a6775

View File

@ -24,7 +24,7 @@ flutter analyze --flutter-repo
(cd dev/automated_tests; flutter test test_smoke_test/pass_test.dart > /dev/null)
COVERAGE_FLAG=
if [ -n $TRAVIS ]; then
if [ -n $TRAVIS ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then
COVERAGE_FLAG=--coverage
fi