Skip to content

Commit

Permalink
Update coveralls_report.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskaselow authored Jul 24, 2018
1 parent e8db0e7 commit 4949873
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tool/coveralls_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ set -e
if [ "$COVERALLS_TOKEN" ]; then
echo "Running coverage..."
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 --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 4949873

Please sign in to comment.