From 78f336192106399b9597270f0f0a00ddcd64b8cb Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Wed, 27 Sep 2023 18:29:54 +0200 Subject: [PATCH] ci: enable verbose output for e2e tests (#11045) It's easier to see that something is happening. Signed-off-by: Djordje Lukic --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c9f45dba6a..09f8309766e 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ install: binary .PHONY: e2e-compose e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName to run a single test - go test $(TEST_FLAGS) -count=1 ./pkg/e2e + go test -v $(TEST_FLAGS) -count=1 ./pkg/e2e .PHONY: e2e-compose-standalone e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test