From d1cd97e228654d71a5a109c17c9f1c68cf2386e5 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Mon, 26 May 2025 22:00:50 +0200 Subject: [PATCH] chore: remove gotestfmt --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 50d6c99..c4c1301 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,8 @@ doc: .PHONY: test ## Run tests test: - @GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race -json ./... | gotestfmt + @GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race ./... + #@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -race -json ./... | gotestfmt .PHONY: lint ## Run linter