From 19f2cdc5de63123bbac64d71149f961122c1e450 Mon Sep 17 00:00:00 2001 From: Richard Case Date: Wed, 27 Sep 2023 09:54:56 +0200 Subject: [PATCH] fix: full e2e test failure The full e2e test run was failing due to double escaping the label filter which caused the filter to be interpretated as a command. This change remove the quote from the filter variable value. Signed-off-by: Richard Case --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f479614..a6d7ae2e 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ SKIP_RESOURCE_CLEANUP ?= false USE_EXISTING_CLUSTER ?= false ISOLATED_MODE ?= false GINKGO_NOCOLOR ?= false -GINKGO_LABEL_FILTER ?= "short || full" +GINKGO_LABEL_FILTER ?= short || full # to set multiple ginkgo skip flags, if any ifneq ($(strip $(GINKGO_SKIP)),)