From c672af1708aa87a41270ccabaedbd108a0cd72ad Mon Sep 17 00:00:00 2001 From: Eduard Bartosh Date: Wed, 22 Dec 2021 12:50:29 +0200 Subject: [PATCH] e2e: disable namespace deletion if test fails Signed-off-by: Eduard Bartosh --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 27a38192f..8206d4770 100644 --- a/Makefile +++ b/Makefile @@ -133,13 +133,13 @@ TAG?=devel export TAG e2e-fpga: - @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "FPGA Plugin" + @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "FPGA Plugin" -delete-namespace-on-failure=false e2e-qat: - @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "QAT plugin in DPDK mode" + @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "QAT plugin in DPDK mode" -delete-namespace-on-failure=false e2e-sgx: - @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "SGX" + @$(GO) test -v ./test/e2e/... -ginkgo.v -ginkgo.progress -ginkgo.focus "SGX" -delete-namespace-on-failure=false pre-pull: ifeq ($(TAG),devel)