Skip to content

Commit 6ea69bb

Browse files
fix(codecov): add config to exclude main.cpp and benchmarks
1 parent 8d87101 commit 6ea69bb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

codecov.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# codecov.yml - Configure Codecov coverage reporting
2+
coverage:
3+
status:
4+
project:
5+
default:
6+
informational: true # Report coverage but don't fail checks
7+
# CI script enforces threshold instead
8+
9+
ignore:
10+
- "tests/**" # Test files
11+
- "benchmarks/**" # Benchmark files
12+
- "build/**" # Build artifacts
13+
- "src/main.cpp" # Entry point (not testable)
14+
- "**/_deps/**" # External dependencies

0 commit comments

Comments
 (0)