feat(ci): add progress output and job summary to e2e action#207
Open
hanthor wants to merge 1 commit into
Open
Conversation
- Add '--format progress' to the behave command so the CI log shows
live pass/fail/skip dots as tests run (previously silent while all
formatters wrote to files only)
- Add 'Summarise results' step (if: always()) that:
- Prints a compact failure digest to the CI log with the exact
scenario, step name, and error message for each failure
- Writes a GitHub Actions job summary table (markdown) with
pass/fail/skip counts, a failures table, and SLA violation table
so failures are visible directly in the Actions UI without downloading
any artifacts
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
Two improvements to make e2e failures easier to diagnose without downloading artifacts:
1. Live progress output in CI log
Adds
--format progressto the behave command. Previously all formatters wrote to files, leaving the CI log nearly empty during the test run. Now the log shows live dot-notation as tests execute:(
S= skipped,.= passed,F= failed)2. GitHub Actions job summary
Adds a "Summarise results" step (
if: always()) that runs on the GitHub Actions runner after tests complete. It:With a failures table showing Feature / Scenario / Failed Step / Error, and an SLA violations table.
No artifact download needed to see what broke.
Verified against real artifacts from run 26737615278.