diff --git a/Makefile b/Makefile index c1283a32..be12fd07 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ build: .PHONY: vet vet: - docker run --rm -v $(CURDIR):/app -w /app golangci/golangci-lint:latest golangci-lint run -v --timeout 180 + docker run --rm -v $(CURDIR):/app -w /app golangci/golangci-lint:latest golangci-lint run -v .PHONY: test test: - go test ./... -timeout=180s -coverprofile=c.out -covermode=atomic -count=1 -race -v + go test ./... -timeout=5m -coverprofile=c.out -covermode=atomic -count=1 -race -v