From e8315d2df25c0b6feb9b8cf8c3cd0e0c9f5e16c2 Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Date: Thu, 2 Apr 2020 16:54:25 +0200 Subject: [PATCH] Allow running just the e2e tests This is useful when working on the e2e tests, you can deploy once and run e2e-tests many times. ``` make e2e status=keep ... modify your e2e tests here ... make e2e-tests ``` --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f1548fd26..159390876 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,9 @@ TARGETS := $(shell ls -p scripts | grep -v -e /) clusters: build package +e2e-tests: + ./scripts/kind-e2e/e2e.sh --status keep --deploytool $(deploytool) + e2e: deploy ./scripts/kind-e2e/e2e.sh --status $(status) --deploytool $(deploytool)