Skip to content

Commit

Permalink
fix: full e2e test failure
Browse files Browse the repository at this point in the history
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 <richard.case@suse.com>
  • Loading branch information
richardcase committed Sep 27, 2023
1 parent 6860139 commit 19f2cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)),)
Expand Down

0 comments on commit 19f2cdc

Please sign in to comment.