Skip to content

Commit

Permalink
Adding small tweak to handle - vs _ in image/plugin name (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens authored Jul 13, 2021
1 parent 6711f60 commit 79d591b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cicd/iqe_pod/iqe_runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down

0 comments on commit 79d591b

Please sign in to comment.