Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
rpelisse committed Jun 27, 2024
1 parent 0ee6126 commit 45efd95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/molecule/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ runAllMoleculeScenarios() {
listAllScenarios() {
for f in $(find molecule/*/molecule.yml -maxdepth 1 -print)
do
echo $(dirname "${f}")
echo $(basename $(dirname "${f}"))
done
}

Expand All @@ -131,7 +131,7 @@ runAllMoleculeScenariosInParralel() {
configMolForParralelRuns
for scenario_name in $(listAllScenarios)
do
echo "DEBUG> molecule ${MOLECULE_DEBUG} test ${MOLECULE_RUN_SCENARIOS_IN_PARALEL} "${scenario_name}" -d "${scenario_driver_name}" -- ${extra_args}"
echo "DEBUG> molecule ${MOLECULE_DEBUG} test --parallel -s "${scenario_name}" -d "${scenario_driver_name}" -- ${extra_args}"
# shellcheck disable=SC2086
molecule ${MOLECULE_DEBUG} test --parallel -s "${scenario_name}" -d "${scenario_driver_name}" -- -e wildfly_node_id=${scenario_name} ${extra_args} "${@}" &> "${sscenario_name}.log" &
pids["${scenario_name}"]="${!}"
Expand Down

0 comments on commit 45efd95

Please sign in to comment.