mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
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:
parent
73aa78a925
commit
13fc03eca4
1 changed files with 1 additions and 1 deletions
|
|
@ -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),)
|
||||
|
|
|
|||
Loading…
Reference in a new issue