From 5a8583b78192f7852d924f445fe5478c89f4b7e2 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sat, 24 Jun 2023 10:28:04 +0200 Subject: [PATCH] show the full status when a test run fails --- forgejo-test-helper.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/forgejo-test-helper.sh b/forgejo-test-helper.sh index c9ad0ed..a41e994 100755 --- a/forgejo-test-helper.sh +++ b/forgejo-test-helper.sh @@ -77,6 +77,7 @@ function wait_success() { done if ! test "$(check_status "$url" "$repo" "$sha")" = "success" ; then test "$FORGEJO_RUNNER_LOGS" && cat $FORGEJO_RUNNER_LOGS + api GET $url repos/$repo/commits/$sha/status | jq . return 1 fi }