From fc1a89088a7a676dfe558b5be8633686593e5a21 Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Mon, 17 Jan 2022 11:26:34 +0100 Subject: [PATCH] build: disabling test cache and ignoring varnamelen in lint --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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: