Skip to content

Commit 573bbe4

Browse files
authored
feat(executor): reorder markdown summary to prioritize test results (#83)
Move test results, step stats, and start block sections above system, resource limits, and metadata in the markdown summary output.
1 parent a485667 commit 573bbe4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/executor/markdown.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ func GenerateRunMarkdown(
144144

145145
writeTitle(&sb, runID)
146146
writeOverview(&sb, &cfg)
147+
writeTestResults(&sb, testsTotal, testsPassed, testsFailed)
148+
writeStepStats(&sb, steps)
149+
writeStartBlock(&sb, cfg.StartBlock)
147150
writeSystem(&sb, cfg.System)
148151
writeResourceLimits(&sb, cfg.Instance)
149152
writeMetadata(&sb, cfg.Metadata)
150-
writeStartBlock(&sb, cfg.StartBlock)
151-
writeTestResults(&sb, testsTotal, testsPassed, testsFailed)
152-
writeStepStats(&sb, steps)
153153

154154
// Failed tests section is last — it gets truncated if needed.
155155
failed := collectFailedTests(result)

0 commit comments

Comments
 (0)