chore: disable gotestfmt

This commit is contained in:
Kevin Franklin Kim 2025-05-16 16:52:09 +02:00
parent dd8e6a63e7
commit 56aa5220ac
No known key found for this signature in database

View File

@ -27,12 +27,14 @@ doc:
.PHONY: test
## Run tests
test:
@GO_TEST_TAGS=-skip go test -tags=safe -coverprofile=coverage.out -race -json ./... | gotestfmt
@GO_TEST_TAGS=-skip go test -tags=safe -coverprofile=coverage.out -race ./...
#@GO_TEST_TAGS=-skip go test -tags=safe -coverprofile=coverage.out -race -json ./... | gotestfmt
.PHONY: test.update
## Run tests and update snapshots
test.update:
@GO_TEST_TAGS=-skip go test -update -tags=safe -coverprofile=coverage.out -race -json ./... | gotestfmt
@GO_TEST_TAGS=-skip go test -update -tags=safe -coverprofile=coverage.out -race ./...
#@GO_TEST_TAGS=-skip go test -update -tags=safe -coverprofile=coverage.out -race -json ./... | gotestfmt
.PHONY: lint
## Run linter