debug: use standard-verbose format for gotestsum to prevent output buffering

gotestsum's default 'testname' format buffers output, hiding which
tests are currently running. standard-verbose streams go test -v output
in real time, so we can see === RUN lines for hanging tests.

Co-authored-by: Claude <claude@anthropic.com>
This commit is contained in:
Pavel Zeman 2026-04-09 02:03:38 +00:00
parent 73aa78a925
commit 13fc03eca4

View file

@ -478,7 +478,7 @@ test-server: export GOTESTSUM_FORMAT := $(GOTESTSUM_FORMAT)
test-server: export GOTESTSUM_JUNITFILE := $(GOTESTSUM_JUNITFILE)
test-server: export GOTESTSUM_JSONFILE := $(GOTESTSUM_JSONFILE)
test-server: test-server-pre
$(GOBIN)/gotestsum --rerun-fails=3 --packages="$(TE_PACKAGES) $(EE_PACKAGES)" -- $(GOFLAGS) -v -timeout=5m $(COVERAGE_FLAG)
$(GOBIN)/gotestsum --rerun-fails=3 --format=standard-verbose --packages="$(TE_PACKAGES) $(EE_PACKAGES)" -- $(GOFLAGS) -v -timeout=5m $(COVERAGE_FLAG)
ifneq ($(IS_CI),true)
ifneq ($(MM_NO_DOCKER),true)
ifneq ($(TEMP_DOCKER_SERVICES),)