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