| Index: tool/coverage.sh
|
| diff --git a/tool/travis.sh b/tool/coverage.sh
|
| similarity index 71%
|
| rename from tool/travis.sh
|
| rename to tool/coverage.sh
|
| index 5e761cf41a9b451e70b14aec495bb79d371869ec..e45f7cb7611c93014203e125172ba8b8f4274dfb 100755
|
| --- a/tool/travis.sh
|
| +++ b/tool/coverage.sh
|
| @@ -1,12 +1,7 @@
|
| #!/bin/bash
|
| +set -e # bail on error
|
|
|
| -# Fast fail the script on failures.
|
| -set -e
|
| -
|
| -# Build first
|
| -./tool/build_sdk.sh
|
| -
|
| -dart --checked test/all_tests.dart
|
| +# Prerequisite: ./tool/build_sdk.sh has been run.
|
|
|
| # Install dart_coveralls; gather and send coverage data.
|
| if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then
|
|
|