Increase test timeout to 30s to accomodate longer Azure test
This commit is contained in:
parent
3693dd8879
commit
71b593a265
2
Makefile
2
Makefile
|
@ -56,7 +56,7 @@ generate: deps
|
||||||
go fmt command/plugin.go
|
go fmt command/plugin.go
|
||||||
|
|
||||||
test: deps
|
test: deps
|
||||||
@go test $(TEST) $(TESTARGS) -timeout=15s
|
@go test $(TEST) $(TESTARGS) -timeout=30s
|
||||||
@go vet $(TEST) ; if [ $$? -eq 1 ]; then \
|
@go vet $(TEST) ; if [ $$? -eq 1 ]; then \
|
||||||
echo "ERROR: Vet found problems in the code."; \
|
echo "ERROR: Vet found problems in the code."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|
Loading…
Reference in New Issue