From ec0d02d02f0eba8696fa210ab89df50e164d35c5 Mon Sep 17 00:00:00 2001 From: Jesse Hallam Date: Mon, 25 May 2026 13:02:20 -0300 Subject: [PATCH] chore(ci): remove || true from go test in go-cache; let failures surface --- server/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Makefile b/server/Makefile index 76c25e3978d..9a3b82555f6 100644 --- a/server/Makefile +++ b/server/Makefile @@ -445,8 +445,8 @@ go-cache: setup-go-work install-ci-tools ## Pre-warm Go module and build cache f @(cd public && $(GO) mod download all) $(GO) build ./... @(cd public && $(GO) build ./...) - $(GO) test -run=^$$ -count=1 ./... || true - @(cd public && $(GO) test -run=^$$ -count=1 ./... || true) + $(GO) test -run=^$$ -count=1 ./... + @(cd public && $(GO) test -run=^$$ -count=1 ./...) test-compile: setup-go-work gotestsum ## Compile tests. @echo COMPILE TESTS