Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8 +/- ##
===========================================
+ Coverage 80.26% 92.42% +12.16%
===========================================
Files 7 6 -1
Lines 228 198 -30
===========================================
Hits 183 183
+ Misses 45 15 -30 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR adds a Codecov configuration file to integrate code coverage reporting into the repository's CI/CD pipeline. The configuration aligns with the existing 95% coverage threshold already enforced by go-test-coverage.
Key Changes
- Adds codecov.yml with 95% coverage target matching the existing .testcoverage.yml threshold
- Configures cmd directory exclusion from coverage tracking
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| target: 95% | ||
|
|
||
| ignore: | ||
| - "cmd/**/*" |
There was a problem hiding this comment.
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.
| - "cmd/**/*" | |
| - "cmd/server/main.go" |
No description provided.