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

Side by Side Diff: tool/coverage.sh

Issue 1236493003: fix code coverage to work on dev channel (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | 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
1 #!/bin/bash 1 #!/bin/bash
2 set -e # bail on error 2 set -e # bail on error
3 3
4 # Prerequisite: ./tool/build_sdk.sh has been run. 4 # Prerequisite: ./tool/build_sdk.sh has been run.
5 5
6 # Install dart_coveralls; gather and send coverage data. 6 # Install dart_coveralls; gather and send coverage data.
7 if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then 7 if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "dev" ]; then
8 pub global run dart_coveralls report \ 8 pub global run dart_coveralls report \
9 --token $COVERALLS_TOKEN \ 9 --token $COVERALLS_TOKEN \
10 --retry 2 \ 10 --retry 2 \
11 --exclude-test-files \ 11 --exclude-test-files \
12 test/all_tests.dart 12 test/all_tests.dart
13 fi 13 fi
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698