mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 16:33:08 -06:00
11 lines
131 B
Bash
Executable File
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
|
|
|