DCD-224: Add quick script to run all molecule tests.

This commit is contained in:
Steve Smith
2019-05-08 16:33:01 +10:00
parent 2470f669d6
commit d898ad37de

10
bin/run-all-tests Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
set -e
for role in `find -name molecule`; do
pushd `dirname $role`
molecule test --all
popd
done