Udpdated test/race timeouts to 2m because AWS seems to be taking a while

This commit is contained in:
Chris Bednarski 2016-05-06 23:15:05 -07:00
parent a91156b134
commit aa47c90ddd
1 changed files with 2 additions and 2 deletions

View File

@ -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