Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 # Fast fail the script on failures. | |
| 4 set -e | |
| 5 | |
| 6 dart --checked test/test_all.dart | |
| 7 | |
| 8 # Install dart_coveralls; gather and send coverage data. | |
| 9 if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then | |
| 10 pub global activate dart_coveralls | |
|
nweiz
2015/03/02 19:08:42
Can we put this in a before_install script? http:/
kevmoo
2015/03/03 18:12:18
Done.
| |
| 11 pub global run dart_coveralls report \ | |
| 12 --token $COVERALLS_TOKEN \ | |
| 13 --retry 2 \ | |
| 14 --exclude-test-files \ | |
| 15 test/test_all.dart | |
| 16 fi | |
| OLD | NEW |