From 561e0bc04ab6e76f03c946503ab53ce39d2d9674 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Thu, 31 Aug 2023 10:13:15 +0200 Subject: [PATCH] ci: add ginkgo.v when running e2e tests Ginkgo is not output the logs when the tests are running, it logs only after completing the tests or if the test fails. Signed-off-by: Madhu Rajanna --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 64dfb581f..91865aa3e 100644 --- a/Makefile +++ b/Makefile @@ -186,7 +186,7 @@ run-e2e: NAMESPACE ?= cephcsi-e2e-$(shell uuidgen | cut -d- -f1) run-e2e: @test -e e2e.test || $(MAKE) e2e.test cd e2e && \ - ../e2e.test -test.v -ginkgo.timeout="${E2E_TIMEOUT}" --deploy-timeout="${DEPLOY_TIMEOUT}" --cephcsi-namespace=$(NAMESPACE) $(E2E_ARGS) + ../e2e.test -test.v -ginkgo.v -ginkgo.timeout="${E2E_TIMEOUT}" --deploy-timeout="${DEPLOY_TIMEOUT}" --cephcsi-namespace=$(NAMESPACE) $(E2E_ARGS) .container-cmd: @test -n "$(shell which $(CONTAINER_CMD) 2>/dev/null)" || { echo "Missing container support, install Podman or Docker"; exit 1; }