[Arch] Coverage-gate mismatch between local and CI enforcement #67
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: Medium | Category: DX
Makefile:7enforces--cov-fail-under=50;Dockerfile:11(the actual CI-blocking gate) enforces--cov-fail-under=18. Real coverage is 79%. A large regression could ship without failing CI's Docker-stage gate.Recommendation: Raise
Dockerfile's threshold to match or exceed the Makefile's 50, ideally closer to current real coverage with headroom.Full detail:
docs/architecture-review.md§ C + § H.2Fixed on branch
architecture-rework, commitf7003d2:Dockerfile's--cov-fail-underraised from 18 to 50, matching the Makefile's local gate. Verified: full suite passes at 79-80% actual coverage.