Add molecule test for bootstrap-os (#5845)

This commit is contained in:
Maxime Guyot
2020-04-01 16:25:28 +02:00
committed by GitHub
parent be9414fabe
commit ded58d3b66
8 changed files with 94 additions and 0 deletions

12
tests/scripts/molecule_run.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/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
cd $(dirname $d)
molecule test --all
cd -
done