Skip to content
Snippets Groups Projects
Commit cc3be591 authored by Devon Carew's avatar Devon Carew
Browse files

send coverage data to coveralls

parent 2f104faa
No related branches found
No related tags found
No related merge requests found
......@@ -18,3 +18,13 @@ dart test/all.dart
# Run all the generators and analyze the generated code.
dart tool/grind.dart test
# Install dart_coveralls; gather and send coverage data.
if [ "$COVERALLS_TOKEN" ]; then
pub global activate dart_coveralls
pub global run dart_coveralls report \
--token $COVERALLS_TOKEN \
--retry 2 \
--exclude-test-files \
test/all.dart
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment