From 2e747127fbb9d6e0ecbb69ffa9baa741df7c72fd Mon Sep 17 00:00:00 2001 From: Luke Kysow Date: Sun, 5 Nov 2017 20:59:19 -0800 Subject: [PATCH] Increase timeout of metacheck from 120 to 300s --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 782d3cc218..adf86191e3 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ gometalint: ## Run every linter ever # gotype and gotypex are disabled because they don't pass on CI and https://github.com/alecthomas/gometalinter/issues/206 # gocyclo is temporarily disabled because we don't pass it right now # golint is temporarily disabled because we need to add comments everywhere first - gometalinter --disable gotype --disable gotypex --disable=gocyclo --disable golint --enable=megacheck --enable=unparam --deadline=120s --vendor -t --line-length=120 $$(find . -type f -name '*.go' ! -path "./vendor/*" ! -path "./server/static/bindata_assetfs.go" ! -path "**/mocks/*" | xargs -I '{}' dirname '{}' | sort -u) + gometalinter --disable gotype --disable gotypex --disable=gocyclo --disable golint --enable=megacheck --enable=unparam --deadline=300s --vendor -t --line-length=120 $$(find . -type f -name '*.go' ! -path "./vendor/*" ! -path "./server/static/bindata_assetfs.go" ! -path "**/mocks/*" | xargs -I '{}' dirname '{}' | sort -u) gometalint-install: ## Install gometalint go get -u github.com/alecthomas/gometalinter