From b94878c35dafcbb4b06403fea2280b5027d05b63 Mon Sep 17 00:00:00 2001 From: Lukas Renggli Date: Sat, 10 Mar 2018 13:21:58 +0100 Subject: [PATCH] Better messaging in Travis. --- tool/travis.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tool/travis.sh b/tool/travis.sh index 75be4d8..8901ab0 100755 --- a/tool/travis.sh +++ b/tool/travis.sh @@ -5,11 +5,13 @@ set -e # Verify Dart 2.0 strict mode compatibility. if [ "${TRAVIS_DART_VERSION}" = "dev" ]; then + echo "Verifying Dart 2.0 strict mode ..." dart --preview-dart-2 test/all_tests.dart fi # Verify the coverage of the tests. if [ "${COVERALLS_TOKEN}" ] && [ "${TRAVIS_DART_VERSION}" = "stable" ]; then + echo "Verifying test coverage ..." pub global activate dart_coveralls pub global run dart_coveralls report \ --token "${COVERALLS_TOKEN}" \