From d898ad37de3d45629548c1ed6f5c3a361da9726e Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Wed, 8 May 2019 16:33:01 +1000 Subject: [PATCH] DCD-224: Add quick script to run all molecule tests. --- bin/run-all-tests | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 bin/run-all-tests diff --git a/bin/run-all-tests b/bin/run-all-tests new file mode 100755 index 0000000..dc2415a --- /dev/null +++ b/bin/run-all-tests @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e + +for role in `find -name molecule`; do + pushd `dirname $role` + molecule test --all + popd +done +