From 6244cf039da932f0115bc122a8e6060c1e66a393 Mon Sep 17 00:00:00 2001 From: user Date: Tue, 17 Mar 2026 20:31:51 -0700 Subject: [PATCH] makefile: rerun tests with -v only on failure --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2f89ea..67ceb3e 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ fmt-check: @test -z "$$(gofmt -l .)" || (echo "Files not formatted:" && gofmt -l . && exit 1) test: ensure-web-dist - go test -timeout 30s -race -cover ./... + go test -timeout 30s -race -cover ./... || go test -timeout 30s -race -v ./... # check runs all validation without making changes # Used by CI and Docker build — fails if anything is wrong