mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Use Ansible from virtualenv if provided
|
|
pipenv install molecule docker six
|
|
|
|
for role in `find roles/ -name molecule | sort`; do
|
|
pushd `dirname $role`
|
|
pipenv run molecule test --all
|
|
popd
|
|
done
|