From 0a1f329a9fd78b9f3e1029e4a127da56e6d7ede5 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Tue, 11 Jun 2024 08:58:27 +0200 Subject: [PATCH] Fix test_case name See here: https://github.com/sclorg/httpd-container/blob/master/.github/workflows/openshift-tests.yml#L32 Its better openshift-pytest then test-openshift-pytest Signed-off-by: Petr "Stone" Hracek --- export_variables.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/export_variables.sh b/export_variables.sh index fdb6551..032c6e5 100755 --- a/export_variables.sh +++ b/export_variables.sh @@ -5,7 +5,7 @@ private_ranch="rhel7 rhel8 rhel9 rhel9-unsubscribed" all_os="$public_ranch $private_ranch" os_test="$1" # options: centos7, c8s, c9s, fedora, rhel7, rhel8, rhel9, rhel9-unsubscribed -test_case="$2" # options: container, openshift-4, pytest +test_case="$2" # options: container, openshift-4, openshift-pytest user_context="$3" # User can specify its own user-defined context, like 'Testing Farm - pytest - RHEL8' if [ -z "$os_test" ] || ! echo "$all_os" | grep -q "$os_test" ; then echo "::error::os_test '$os_test' is not valid" @@ -26,7 +26,7 @@ case "$test_case" in tmt_plan_suffix="-openshift-4" test_name="test-openshift-4" ;; - "test-openshift-pytest") + "openshift-pytest") context_suffix="PyTest - OpenShift 4" tmt_plan_suffix="-pytest" test_name="test-openshift-pytest"