From b1920de14feb9e16f485bea361de716458672dd6 Mon Sep 17 00:00:00 2001 From: OpenShift Cherrypick Robot Date: Wed, 21 Feb 2024 17:48:57 +0100 Subject: [PATCH] Run OIDC test as part of encryption/auth test suite (#544) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christoph Stäbler --- openshift/e2e-common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openshift/e2e-common.sh b/openshift/e2e-common.sh index b2eaa4e3439..7939785b72d 100644 --- a/openshift/e2e-common.sh +++ b/openshift/e2e-common.sh @@ -143,7 +143,7 @@ function run_e2e_encryption_auth_tests(){ oc wait --for=condition=Ready knativeeventing.operator.knative.dev knative-eventing -n "${EVENTING_NAMESPACE}" --timeout=900s || return $? - local regex="TLS" + local regex="TLS|OIDC" local test_name="${1:-}" local run_command="-run ${regex}" @@ -153,7 +153,7 @@ function run_e2e_encryption_auth_tests(){ local run_command="-run ^(${test_name})$" fi # check for test flags - RUN_FLAGS="-timeout=1h -parallel=20 -run ${regex}" + RUN_FLAGS="-timeout=1h -parallel=20 ${run_command}" if [ -n "${EVENTING_TEST_FLAGS:-}" ]; then RUN_FLAGS="${EVENTING_TEST_FLAGS}" fi