blob: e9f04949af10dcc75b8a937d92ad115e5375ea10 [file] [log] [blame] [edit]
#!/bin/bash
set -e # bail on error
# Prerequisite: ./tool/build_sdk.sh has been run.
# Install dart_coveralls; gather and send coverage data.
if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "dev" ]; then
pub global run dart_coveralls report \
--token $COVERALLS_TOKEN \
--retry 2 \
--exclude-test-files \
test/all_tests.dart
fi