chore(test): add coverage thresholds config#714
Open
osvaldoandrade wants to merge 1 commit into
Open
Conversation
Introduce .testcoverage.yml consumed by go-test-coverage in CI. Overall floor starts at 70% (permissive). Per-package overrides: - internal/core: 95% (domain layer, epic #646) - internal/application: 85% - internal/storage: 80% - internal/server: 85% - pkg/{producer,worker}client: 80% Generated *.pb.go and cmd/*/main.go are excluded. Thresholds are promoted to required gates once epic #654 fills test gaps. Refs #645 #658
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
.testcoverage.ymlconsumed bygo-test-coveragein CI.Thresholds
internal/coreinternal/applicationinternal/storageinternal/serverpkg/{producer,worker}clientpkg/{types,plugin,auth}Exclusions
*.pb.go,*.pb.gw.go(generated)cmd/*/main.go(entrypoints)internal/bench/(benchmark harness)Notes
Overall threshold starts at 70% to avoid breaking current CI. It is promoted to required and tightened to 90% once epic #654 closes existing test gaps.
Test plan
go-test-coverageparses the file without error.Closes #658
Part of #645