fix(ci): drop tail -20 pipe from go test in go-cache target

This commit is contained in:
Jesse Hallam 2026-05-25 12:57:58 -03:00
parent 20f23f0a43
commit 89200a2b95
No known key found for this signature in database
GPG key ID: B1006FD711F7B1D8

View file

@ -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 ./... 2>&1 | tail -20
@(cd public && $(GO) test -run=^$$ -count=1 ./... 2>&1 | tail -20)
$(GO) test -run=^$$ -count=1 ./... || true
@(cd public && $(GO) test -run=^$$ -count=1 ./... || true)
test-compile: setup-go-work gotestsum ## Compile tests.
@echo COMPILE TESTS