| Index: tool/travis.sh
|
| diff --git a/tool/travis.sh b/tool/travis.sh
|
| index b21d42120a1de616514802b93d203cc971d20e31..e8e10b79502a7dd4f5842b8923fa508c73d3a196 100755
|
| --- a/tool/travis.sh
|
| +++ b/tool/travis.sh
|
| @@ -9,10 +9,11 @@ set -e
|
|
|
| # Verify that the libraries are error free.
|
| dartanalyzer --fatal-warnings \
|
| - lib/cli_util.dart
|
| + lib/cli_util.dart \
|
| + test/cli_util_test.dart
|
|
|
| # Run the tests.
|
| -#dart test/all.dart
|
| +dart test/cli_util_test.dart
|
|
|
| # Install dart_coveralls; gather and send coverage data.
|
| if [ "$COVERALLS_TOKEN" ]; then
|
| @@ -21,5 +22,5 @@ if [ "$COVERALLS_TOKEN" ]; then
|
| --token $COVERALLS_TOKEN \
|
| --retry 2 \
|
| --exclude-test-files \
|
| - test/all.dart
|
| + test/cli_util_test.dart
|
| fi
|
|
|