Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: tool/travis.sh

Issue 1026363003: pkg/isolate: support travis and coveralls (Closed) Base URL: https://github.com/dart-lang/isolate.git@travis
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/test_all.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Fast fail the script on failures.
4 set -e
5
6 # Run the tests.
7 dart --checked test/test_all.dart
8
9 # Install dart_coveralls; gather and send coverage data.
10 if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then
11 pub global activate dart_coveralls
12 pub global run dart_coveralls report \
13 --token $COVERALLS_TOKEN \
14 --retry 2 \
15 --exclude-test-files \
16 test/test_all.dart
17 fi
OLDNEW
« no previous file with comments | « test/test_all.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698