From 8250af827bdc35d9444f5882a52e667b41a745da Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Tue, 16 Nov 2021 15:33:36 +0100 Subject: [PATCH] build(make): disables linter, cleans the test command --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2cecbb7..7caef5e 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,13 @@ generate: .PHONY: lint lint: - golangci-lint run --enable-all --disable=exhaustivestruct,godox + golangci-lint run \ + --enable-all \ + --disable=exhaustivestruct,godox,varnamelen .PHONY: test test: - go test -v -race -cover -coverprofile=coverage.out -tags=integration ./... -timeout=120m + go test -v -race -cover -coverprofile=coverage.out .PHONY: coverage coverage: test