Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
coverage:
status:
project:
default:
target: 95%

ignore:
- "cmd/**/*"

Copilot AI Jan 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ignore pattern "cmd/**/*" excludes the entire cmd directory from coverage, but the existing .testcoverage.yml file only excludes "cmd/server/main.go". This creates an inconsistency between local coverage checks and Codecov reporting. Consider aligning the patterns by changing this to only exclude the main.go file, or update .testcoverage.yml to match this broader exclusion.

Suggested change
- "cmd/**/*"
- "cmd/server/main.go"

Copilot uses AI. Check for mistakes.