feat(cargo): add cargo nextest support with failures-only output#107
Merged
pszymkowiak merged 1 commit intortk-ai:masterfrom Feb 15, 2026
Merged
feat(cargo): add cargo nextest support with failures-only output#107pszymkowiak merged 1 commit intortk-ai:masterfrom
pszymkowiak merged 1 commit intortk-ai:masterfrom
Conversation
Collaborator
|
thank you for the PR please rebase and add cargo nextest run in the hook. |
Add token-optimized filtering for `cargo nextest` output: strip compilation noise, PASS lines, and post-summary recaps; show only failure details and a compact summary. Extract flush_failure_block helper to DRY up failure block collection (was repeated 4 times). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24eecc7 to
9602ea7
Compare
Contributor
Author
|
Done, I've rebase & update the hooks rtk-rewrite.sh, and rtk-suggest.sh |
ahundt
added a commit
to ahundt/rtk
that referenced
this pull request
Feb 16, 2026
Merged from upstream/master: - feat(gain): colored dashboard with efficiency meter and impact bars (rtk-ai#129) - refactor(init): add upsert_rtk_block for idempotent CLAUDE.md management (rtk-ai#123) - feat(cargo): add cargo nextest support with failures-only output (rtk-ai#107) - docs: version references to 0.16.0/0.18.0 in README, ARCHITECTURE, CHANGELOG - ci: add validate-docs workflow Conflict resolution in src/init.rs: - Kept RtkBlockUpsert enum and upsert_rtk_block() from upstream - Kept patch_instruction_file() from current branch (for @RTK.md references) - Both features coexist: upsert_rtk_block for legacy --claude-md mode, patch_instruction_file for default @RTK.md reference mode All 688 tests pass.
ahundt
added a commit
to ahundt/rtk
that referenced
this pull request
Feb 23, 2026
Merged from upstream/master: - feat(gain): colored dashboard with efficiency meter and impact bars (rtk-ai#129) - refactor(init): add upsert_rtk_block for idempotent CLAUDE.md management (rtk-ai#123) - feat(cargo): add cargo nextest support with failures-only output (rtk-ai#107) - docs: version references to 0.16.0/0.18.0 in README, ARCHITECTURE, CHANGELOG - ci: add validate-docs workflow Conflict resolution in src/init.rs: - Kept RtkBlockUpsert enum and upsert_rtk_block() from upstream - Kept patch_instruction_file() from current branch (for @RTK.md references) - Both features coexist: upsert_rtk_block for legacy --claude-md mode, patch_instruction_file for default @RTK.md reference mode All 688 tests pass.
ahundt
pushed a commit
to ahundt/rtk
that referenced
this pull request
Feb 23, 2026
…-ai#107) Add token-optimized filtering for `cargo nextest` output: strip compilation noise, PASS lines, and post-summary recaps; show only failure details and a compact summary. Extract flush_failure_block helper to DRY up failure block collection (was repeated 4 times). Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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
cargo nextestoutput (90%+ reduction)flush_failure_blockhelper to DRY up failure block collection (was repeated 4 times)Closes #106
Test plan
cargo fmt --all --check && cargo clippy --all-targets && cargo testpassesrtk cargo nextest runon a real project🤖 Generated with Claude Code