Skip to content

Commit

Permalink
Udpdated test/race timeouts to 2m because AWS seems to be taking a while
Browse files Browse the repository at this point in the history
  • Loading branch information
cbednarski committed May 7, 2016
1 parent a91156b commit aa47c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand All @@ -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
Expand Down

0 comments on commit aa47c90

Please sign in to comment.