From db34062ce545ed6eaa123c93f6578a13349c8acd Mon Sep 17 00:00:00 2001 From: Stefan Bueringer Date: Mon, 15 May 2023 15:18:25 +0200 Subject: [PATCH] Disable fail-fast by default for e2e tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stefan Büringer buringerst@vmware.com --- scripts/ci-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-e2e.sh b/scripts/ci-e2e.sh index aaa49c14ec38..51ecb6474e29 100755 --- a/scripts/ci-e2e.sh +++ b/scripts/ci-e2e.sh @@ -53,7 +53,7 @@ kind:prepullAdditionalImages # Configure e2e tests export GINKGO_NODES=3 export GINKGO_NOCOLOR=true -export GINKGO_ARGS="--fail-fast" # Other ginkgo args that need to be appended to the command. +export GINKGO_ARGS="${GINKGO_ARGS:-""}" export E2E_CONF_FILE="${REPO_ROOT}/test/e2e/config/docker.yaml" export ARTIFACTS="${ARTIFACTS:-${REPO_ROOT}/_artifacts}" export SKIP_RESOURCE_CLEANUP=false