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

Side by Side Diff: tool/travis.sh

Issue 966353002: pkg/shelf: add travis and code coverage settings (Closed) Base URL: https://github.com/dart-lang/shelf.git@master
Patch Set: fix for install Created 5 years, 9 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 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 run dart_coveralls report \
11 --token $COVERALLS_TOKEN \
12 --retry 2 \
13 --exclude-test-files \
14 test/test_all.dart
15 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