From 952a11a98dad270096709f50d290dc7d0d45eb07 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Sat, 5 Apr 2025 18:25:38 +0200 Subject: [PATCH] Don't need to remove folders from coverage twice --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 895babbb..19748266 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: