From e70ca3405aaabfab39ac5dc076f429717ee147f2 Mon Sep 17 00:00:00 2001 From: Dibyo Mukherjee Date: Mon, 16 Sep 2019 18:03:27 -0400 Subject: [PATCH] Increase linter timeout to 3 minutes We have had many instances of the build tests failing due to the linter exceeding the default timeout of 1m. Signed-off-by: Dibyo Mukherjee --- test/presubmit-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/presubmit-tests.sh b/test/presubmit-tests.sh index fef20aeb99d..cd244b2929c 100755 --- a/test/presubmit-tests.sh +++ b/test/presubmit-tests.sh @@ -28,7 +28,7 @@ export DISABLE_MD_LINTING=1 source $(dirname $0)/../vendor/github.com/tektoncd/plumbing/scripts/presubmit-tests.sh function post_build_tests() { - golangci-lint run + golangci-lint run --deadline 3m } # We use the default build, unit and integration test runners.