We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b6ef0d commit 6d5ab5bCopy full SHA for 6d5ab5b
1 file changed
tests/run-all-tests.sh
@@ -255,8 +255,8 @@ for suite in "${TEST_SUITES[@]}"; do
255
FAILED_SUITES+=("$suite")
256
line=$(echo -e "${RED}FAILED${NC}: $suite (exit code: $exit_code, failed: $failed, ${elapsed_display})")
257
printf '%d\t%s\n' "$elapsed_ms" "$line" >> "$SORT_FILE"
258
- # Save failure detail for later display
259
- echo "$output" | tail -30 > "$OUTPUT_DIR/${safe_name}.detail"
+ # Preserve the full suite log so CI surfaces the exact failing assertion.
+ printf '%s\n' "$output" > "$OUTPUT_DIR/${safe_name}.detail"
260
else
261
zsh_label=""
262
needs_zsh "$suite" && zsh_label=" (zsh)"
0 commit comments