Skip to content

Commit 6d36625

Browse files
authored
Exclude 'app' directory from code coverage (#15)
1 parent a8ee18d commit 6d36625

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
- name: Generate gcovr Coverage Data
144144
run: |
145145
cd build
146-
gcovr -r ../ --xml --output ../coverage.xml
146+
gcovr -r ../include ../src --xml --output ../coverage.xml
147147
- name: Upload coverage reports to Codecov
148148
uses: codecov/codecov-action@v4.0.1
149149
with:

codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ignore:
22
- "test/**"
3+
- "app/**"
34
coverage:
45
status:
56
project:

0 commit comments

Comments
 (0)