From a98fdfff379f41e496c65a8f465015d1df5d27a5 Mon Sep 17 00:00:00 2001 From: MartinquaXD Date: Fri, 13 Dec 2024 16:09:29 +0000 Subject: [PATCH] final-immediate logging --- .github/workflows/pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 4c505adc50..5493e7d335 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -215,7 +215,7 @@ jobs: attempt=1 while true; do echo "Running test attempt #$attempt" - if ! cargo nextest run -p driver --run-ignored ignored-only --failure-output final; then + if ! cargo nextest run -p driver --run-ignored ignored-only --failure-output immediate-final; then exit 1 fi attempt=$((attempt+1))