From b99731cea4b4e1ca5d091c0c84806e2f1c2ba42e Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Tue, 20 Aug 2019 12:22:59 -0400 Subject: [PATCH] Allow to run completion tests from main Helm repo To run the completion tests, one can now do: make test-completion Signed-off-by: Marc Khouzam --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5fc5a0374..a5cc4d6d8 100644 --- a/Makefile +++ b/Makefile @@ -96,6 +96,10 @@ test-acceptance: build build-cross echo "You can find the acceptance_testing repo at https://github.com/helm/acceptance-testing"; \ fi +.PHONY: test-completion +test-completion: ACCEPTANCE_RUN_TESTS = shells.robot +test-completion: test-acceptance + .PHONY: verify-docs verify-docs: build @scripts/verify-docs.sh