From 49b3356e76698a828406f7e6c523d563f24390df Mon Sep 17 00:00:00 2001 From: nestoracunablanco Date: Wed, 27 May 2026 13:33:13 +0200 Subject: [PATCH] fix: use go run gotestsum instead of calling gotestsum directly This ensures that the tool will be available in the environments Signed-off-by: nestoracunablanco --- hack/test-go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/test-go.sh b/hack/test-go.sh index 69f65e00940..204907837d6 100755 --- a/hack/test-go.sh +++ b/hack/test-go.sh @@ -8,4 +8,4 @@ if [[ -n ${ARTIFACT_DIR:-} ]]; then fi set -o xtrace -gotestsum $JUNIT_ARG -- ${PACKAGES:-"./..."} -race ${TESTFLAGS:-} +go run gotest.tools/gotestsum@latest $JUNIT_ARG -- ${PACKAGES:-"./..."} -race ${TESTFLAGS:-}