From aa47c90ddd12fddd1653fae8c71421da4f4f36fe Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Fri, 6 May 2016 23:15:05 -0700 Subject: [PATCH] Udpdated test/race timeouts to 2m because AWS seems to be taking a while --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b8c33e740..f56b15d6a 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ generate: deps go fmt command/plugin.go test: deps - @go test $(TEST) $(TESTARGS) -timeout=30s + @go test $(TEST) $(TESTARGS) -timeout=2m @go tool vet $(VET) ; if [ $$? -eq 1 ]; then \ echo "ERROR: Vet found problems in the code."; \ exit 1; \ @@ -68,7 +68,7 @@ testacc: deps generate PACKER_ACC=1 go test -v $(TEST) $(TESTARGS) -timeout=45m testrace: deps - @go test -race $(TEST) $(TESTARGS) -timeout=1m + @go test -race $(TEST) $(TESTARGS) -timeout=2m updatedeps: go get -u github.com/mitchellh/gox