Files
dc-deployments-automation/bin/run-all-tests
2019-05-08 16:34:14 +10:00

11 lines
131 B
Bash
Executable File

#!/bin/bash
set -e
for role in `find roles/ -name molecule`; do
pushd `dirname $role`
molecule test --all
popd
done