From 8826f7e4c2e6b7b0fbe4361ad01f626309532b9a Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Tue, 11 Jun 2019 10:59:34 +1000 Subject: [PATCH] DCD-386: Consistent order for test runs. --- bin/run-all-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run-all-tests b/bin/run-all-tests index b5dc601..7489276 100755 --- a/bin/run-all-tests +++ b/bin/run-all-tests @@ -8,7 +8,7 @@ if [[ -f .venv/bin/ansible ]]; then pip install molecule docker six fi -for role in `find roles/ -name molecule`; do +for role in `find roles/ -name molecule | sort`; do pushd `dirname $role` molecule test --all popd