From 0cacf526b22961a6ef899f97f0ae5f56c237186e Mon Sep 17 00:00:00 2001 From: xiangpengzhao Date: Fri, 12 May 2017 15:55:09 +0800 Subject: [PATCH] Suggest user to use 'hack/install-etcd.sh' when running integration tests without etcd found. --- hack/make-rules/test-integration.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hack/make-rules/test-integration.sh b/hack/make-rules/test-integration.sh index 865328b6cb7..0ec8880e3dd 100755 --- a/hack/make-rules/test-integration.sh +++ b/hack/make-rules/test-integration.sh @@ -84,7 +84,8 @@ checkEtcdOnPath() { kube::log::status "Checking etcd is on PATH" which etcd && return kube::log::status "Cannot find etcd, cannot run integration tests." - kube::log::status "Please see docs/devel/testing.md for instructions." + kube::log::status "Please see https://github.com/kubernetes/community/blob/master/contributors/devel/testing.md#install-etcd-dependency for instructions." + kube::log::usage "You can use 'hack/install-etcd.sh' to install a copy in third_party/." return 1 }