Fix test-to-source ratio calculation to exclude tests from source LOC#12373
Merged
Fix test-to-source ratio calculation to exclude tests from source LOC#12373
Conversation
The test-to-source ratio was incorrectly calculated as test_loc / total_loc, but according to specs/metrics-glossary.md it should exclude test files from the source LOC calculation: test_loc / (total_loc - test_loc). This fixes the 77% decline in test coverage - it was actually a calculation bug, not a real decline. The correct ratio should be ~1.44 (healthy) instead of the incorrectly calculated 0.59. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Investigate 77% test coverage decline in past 7 days
Fix test-to-source ratio calculation to exclude tests from source LOC
Jan 28, 2026
pelikhan
approved these changes
Jan 28, 2026
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.
The test-to-source ratio incorrectly included test files in the denominator, causing the Daily Code Metrics Report to show 0.498 (below target) when the actual ratio is 1.443 (healthy).
Changes
Calculation Fix (
.github/workflows/shared/metrics-patterns.md):total_loc - test_loctest_loc / source_locinstead oftest_loc / total_loc*.test.cjsto test file patternsspecs/metrics-glossary.mddefinition explicitlyBefore:
After:
Impact
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.