From 539cb00f404d00fdf560421125642190800ccd95 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Mon, 31 Mar 2025 12:20:54 +0200 Subject: [PATCH] Exclude some files from the coverage report --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89ff5404..895babbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,11 @@ 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: