From 46cb934a8ec268ff00aa9cb28aca0904cc87b914 Mon Sep 17 00:00:00 2001 From: Federico Paolinelli Date: Fri, 30 Jun 2023 16:07:15 +0200 Subject: [PATCH] Makefile: add a way to pass test arguments to e2e tests Signed-off-by: Federico Paolinelli --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8087ee59..a97b66bb 100644 --- a/Makefile +++ b/Makefile @@ -189,7 +189,7 @@ $(GINKGO): $(LOCALBIN) .PHONY: e2etests e2etests: ginkgo - $(GINKGO) -v $(GINKGO_ARGS) ./e2etests + $(GINKGO) -v $(GINKGO_ARGS) ./e2etests -- $(TEST_ARGS) .PHONY: kind-cluster