Skip to content

Commit 54cf47f

Browse files
committed
try deleting cov files between runs
1 parent 64aeba4 commit 54cf47f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,10 @@ jobs:
163163
run: |
164164
GFORTRAN=gfortran-${{matrix.gcc_v}}
165165
GCOV=gcov-${{matrix.gcc_v}}
166-
./build.sh --coverage --skip-documentation # DISABLED FOR NOW
166+
./build.sh --coverage --skip-documentation
167+
# delete old coverage files:
168+
find . -name '*.gcda' -delete
169+
find . -name '*.gcov' -delete
167170
./build.sh --coverage --enable-unicode
168171
169172
- name: Deploy Documentation for master

0 commit comments

Comments
 (0)