From bc3cd84eda51a2732d323f21aa67999eb4b9f4a7 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 15 Feb 2021 21:27:19 -0500 Subject: [PATCH] fix(test): Increase golangci-lint timeout CircleCI has been failing on 'make test-style' because of a timeout. This commit increases the timeout. Signed-off-by: Marc Khouzam (cherry picked from commit 8d33624520375f5c7d60b15e9ff24a59232f336f) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91fb8914d..fb8567490 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ test-coverage: .PHONY: test-style test-style: - GO111MODULE=on golangci-lint run + GO111MODULE=on golangci-lint run --timeout 5m0s @scripts/validate-license.sh .PHONY: test-acceptance