forked from chimon2000/good_first_issue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7111798
commit 7574c3d
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
echo "Run tests and get coverage" | ||
flutter test --coverage | ||
|
||
echo "Remove coverage from untestable areas" | ||
flutter pub run remove_from_coverage -f coverage/lcov.info -r '(models.*$)|((main|uikit|bootstrap|freezed|device_info|environment|.g).dart$)' | ||
|
||
if hash lcov-summary 2>/dev/null; then | ||
echo "Build coverage report for VS Code" | ||
lcov-summary coverage/lcov.info | ||
fi |