Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskaselow committed Aug 13, 2018
2 parents 2115ada + 4949873 commit ee16b4a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tool/coveralls_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ set -e
# Install dart_coveralls; gather and send coverage data.
if [ "$COVERALLS_TOKEN" ]; then
echo "Running coverage..."
# pub global activate dart_coveralls
pub global activate -sgit https://github.com/denniskaselow/dart-coveralls.git
pub global run dart_coveralls report --token $COVERALLS_TOKEN --retry 2 --exclude-test-files --throw-on-connectivity-error --throw-on-error test/all_tests.dart
pub global activate dart_coveralls
# pub global run dart_coveralls report --token $COVERALLS_TOKEN --retry 2 --exclude-test-files --throw-on-connectivity-error --throw-on-error test/all_tests.dart
pub global run dart_coveralls report \
--token $COVERALLS_TOKEN \
--retry 2 \
--exclude-test-files \
test/all_tests.dart
echo "Coverage complete."
else
if [ -z ${COVERALLS_TOKEN+x} ]; then echo "COVERALLS_TOKEN is unset"; fi
Expand Down

0 comments on commit ee16b4a

Please sign in to comment.