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

Side by Side Diff: packages/petitparser/tool/travis.sh

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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 | « packages/petitparser/test/test_test.dart ('k') | packages/plugin/._AUTHORS » ('j') | 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 # Verify that the libraries are error free.
7 dartanalyzer --fatal-warnings \
8 lib/*.dart \
9 test/*.dart
10
11 # Verify that all the tests pass.
12 pub run test
13
14 # Verify the coverage of the tests.
15 if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then
16 pub global activate dart_coveralls
17 pub global run dart_coveralls report \
18 --token $COVERALLS_TOKEN \
19 --retry 2 \
20 --exclude-test-files \
21 test/all_tests.dart
22 fi
OLDNEW
« no previous file with comments | « packages/petitparser/test/test_test.dart ('k') | packages/plugin/._AUTHORS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698