From a8784a17ed6631ce1d8ec2c64de35ec4c53ff429 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Sun, 27 Mar 2022 11:21:36 +0800 Subject: [PATCH] precheck for make test (#2116) Signed-off-by: yxxhero --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9c026b6d..46328875 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ build-test-tools: .PHONY: build-test-tools test: + @which helm &> /dev/null || (echo "helm binary not found. Please see: https://helm.sh/docs/intro/install/" && exit 1) go build -o helmfile . go test -v ${PKGS} -cover -race -p=1 .PHONY: test