c12s-kubespray/tests/scripts/molecule_run.sh
Cristian Calin 2f44b40d68
OEL7: Fix CentOS7 Extras for OEL7 (#8219)
* OEL7: Fix CentOS7 Extras for OEL7

* Molecule: add logs collection for jobs
2021-11-29 13:39:21 -08:00

13 lines
186 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
for d in $(find roles -name molecule -type d)
do
pushd $(dirname $d)
molecule test --all
popd
done