Skip to content

Commit 952a11a

Browse files
committed
Don't need to remove folders from coverage twice
1 parent 50a6b42 commit 952a11a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install dependencies
2525
run: |
26-
sudo apt install libsqlite3-dev lcov
26+
sudo apt install libsqlite3-dev lcov --no-install-recommends
2727
flutter pub get
2828
2929
# Removing some folders from the coverage since these files are not really
@@ -33,11 +33,6 @@ jobs:
3333
flutter test --coverage
3434
lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*' -o coverage/lcov.info
3535
36-
# Removing some folders from the coverage since these files are not really
37-
# part of the app code and just get in the way of the report
38-
- name: Filter coverage report
39-
run: lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*'
40-
4136
- name: Coveralls
4237
uses: coverallsapp/github-action@v2
4338
with:

0 commit comments

Comments
 (0)