From 79d591b035bbfad4d7ef86048490de0f4e5df0fc Mon Sep 17 00:00:00 2001 From: lcouzens Date: Tue, 13 Jul 2021 16:03:25 +0100 Subject: [PATCH] Adding small tweak to handle - vs _ in image/plugin name (#77) --- cicd/iqe_pod/iqe_runner.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cicd/iqe_pod/iqe_runner.sh b/cicd/iqe_pod/iqe_runner.sh index 2f1e455b..1427d9e5 100644 --- a/cicd/iqe_pod/iqe_runner.sh +++ b/cicd/iqe_pod/iqe_runner.sh @@ -35,6 +35,8 @@ for plugin in $PLUGIN_ARRAY; do [ -n "${IQE_MARKER_EXPRESSION}" ] && _marker="and (${IQE_MARKER_EXPRESSION})" # run tests marked for 'parallel' marker="parallel ${_marker}" + # Convert image name to plugin name for clowder + plugin=$(echo $plugin | tr "-" "_") iqe tests plugin ${plugin} \ --junitxml=${ARTIFACTS_DIR}/junit-${plugin}-parallel.xml \ -m "${marker}" \