Commit 4f133a67 authored by Adam Barth's avatar Adam Barth Committed by GitHub

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

It's not reliable enough yet.
parent 73cd70f7
...@@ -24,7 +24,7 @@ flutter analyze --flutter-repo ...@@ -24,7 +24,7 @@ flutter analyze --flutter-repo
(cd dev/automated_tests; flutter test test_smoke_test/pass_test.dart > /dev/null) (cd dev/automated_tests; flutter test test_smoke_test/pass_test.dart > /dev/null)
COVERAGE_FLAG= COVERAGE_FLAG=
if [ -n $TRAVIS ]; then if [ -n $TRAVIS ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then
COVERAGE_FLAG=--coverage COVERAGE_FLAG=--coverage
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment