Don't need to remove folders from coverage twice

This commit is contained in:
Roland Geider
2025-04-05 18:25:38 +02:00
parent 50a6b420f1
commit 952a11a98d

View File

@@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt install libsqlite3-dev lcov
sudo apt install libsqlite3-dev lcov --no-install-recommends
flutter pub get
# Removing some folders from the coverage since these files are not really
@@ -33,11 +33,6 @@ jobs:
flutter test --coverage
lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*' -o coverage/lcov.info
# Removing some folders from the coverage since these files are not really
# part of the app code and just get in the way of the report
- name: Filter coverage report
run: lcov --remove coverage/lcov.info 'lib/l10n/generated/*' 'lib/theme/*'
- name: Coveralls
uses: coverallsapp/github-action@v2
with: