feature/LCHIB-777: improve the gate command output to display actionable failure details - #1364
Merged
jothikumar-CB merged 3 commits intoAug 28, 2026
Merged
Conversation
…ble failure details
jothikumar-CB
requested review from
ono-max
and
a lite review from Copilot
and removed request for
Copilot
August 25, 2026 10:02
Contributor
There was a problem hiding this comment.
Pull request overview
This PR enhances the gate command’s human-readable output so that, when a gate fails, it prints actionable per-test failure details (including test identifier path and stderr), with special formatting for GitHub Actions logs.
Changes:
- Extend
gatetable output to include “Actionable Failure Details” derived fromactionableFailedTests. - Add GitHub Actions-specific log grouping (
::group::/::endgroup::) for actionable failure details whenGITHUB_ACTIONSis set. - Update and expand tests to cover the new output and JSON shape.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| tests/commands/test_gate.py | Updates existing gate tests and adds a new test to assert actionable failure detail output, including GitHub Actions grouping format. |
| launchable/commands/gate.py | Prints actionable failed test details (path + stderr) after the summary table, with GitHub Actions grouping support. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
mnamachivayam
approved these changes
Aug 25, 2026
mnamachivayam
left a comment
Contributor
There was a problem hiding this comment.
Left a comment for you to address. Otherwise, looks good.
ono-max
reviewed
Aug 27, 2026
ono-max
reviewed
Aug 28, 2026
ono-max
approved these changes
Aug 28, 2026
jothikumar-CB
deleted the
feature/LCHIB-777-improve-the-gate-command-output
branch
August 28, 2026 10:05
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.
Pull request overview
This PR enhances the
gatecommand’s human-readable output so that, when a gate fails, it prints actionable per-test failure details (including test identifier path and stderr), with special formatting for GitHub Actions logs.Changes:
gatetable output to include “Actionable Failure Details” derived fromactionableFailedTests.::group::/::endgroup::) for actionable failure details whenGITHUB_ACTIONSis set.