From 56aa5220acc0da7901d56efdffc2bc9da2fe7758 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Fri, 16 May 2025 16:52:09 +0200 Subject: [PATCH] chore: disable gotestfmt --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8d6b1f0..4d22bc0 100644 --- a/Makefile +++ b/Makefile @@ -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