Repair sweep-test-coverage state CSV#2679
Merged
Merged
Conversation
Dedupe duplicate module rows (latest-by-last_inspected wins) and collapse each record to a single physical line. The merge=union strategy in .gitattributes splits any note containing an embedded newline record-by-record, so parallel-agent appends had re-corrupted the file into 31 physical lines with phantom rows and duplicate header lines. One record per line keeps union merges safe. Per-module rows reflect the latest pass: geotiff 19, polygonize 3, rasterize 4, resample 2, zonal 2, reproject (2026-05-29 entry, #2618).
This was referenced May 29, 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.
What
Repairs
.claude/sweep-test-coverage-state.csv. Parallel-agent sweep appends had re-corrupted it under themerge=uniongitattribute.Why
The file keeps one record per sweep module. When a note contains an embedded newline,
merge=uniontreats each physical line as its own record and unions them. That produced duplicate module rows, duplicate header lines, and phantom rows split out of the multi-line notes. It had grown to 31 physical lines with mixed CRLF/LF endings.How
last_inspected).Result is 7 lines (header + 6 modules), each carrying its newest pass data: geotiff 19, polygonize 3, rasterize 4, resample 2, zonal 2, and the 2026-05-29 reproject entry (#2618).