diff --git a/Makefile b/Makefile index 8799714..a408177 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,14 @@ GOLANGCI_LINT := $(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint .PHONY: test test: - $(GO) test -v ./... + $(GO) test -count=1 -v ./... .PHONY: lint lint: - $(GOLANGCI_LINT) run --enable-all --disable=godox --timeout 10m + $(GOLANGCI_LINT) run \ + --enable-all \ + --disable=godox,varnamelen \ + --timeout 10m .PHONY: tidy tidy: