feat(coverage): add Git tracking awareness for coverage reports#2557
Draft
feat(coverage): add Git tracking awareness for coverage reports#2557
Conversation
Add informational display showing Git repository path and untracked files in coverage reports. This helps users understand when coverage files are tracked in Git vs only present on disk. Changes: - Add GitTrackingInfo struct and get_git_tracking_info() function to check if files are tracked in Git - Add untracked_files and git_repo_path fields to the Report struct - Update processor to check Git tracking for files that exist on disk - Add Git repository line to COVERAGE DATA section output - Add untracked files display section showing files on disk but not in Git - Update display limits from 20/10 to 50/50 for missing/untracked files - Update test fixtures to include new Git Repository line in output This is purely informational and does NOT affect validation (which remains disk-based only). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
|
No issue mentions found. Please mention an issue in the pull request description. Use GitHub automation to close the issue when a PR is merged |
Contributor
❌ 1 blocking issue (3 total)
|
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
GitTrackingInfostruct andget_git_tracking_info()function to check if files are tracked in Gituntracked_filesandgit_repo_pathfields to the Report structThis is purely informational and does NOT affect validation (which remains disk-based only).
Test plan
🤖 Generated with Claude Code