mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 00:13:09 -06:00
14 lines
235 B
Bash
Executable File
14 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install dev packages from Pipfile.lock if necessary.
|
|
pipenv sync --dev
|
|
|
|
for role in `find roles/ -name molecule | sort`; do
|
|
pushd `dirname $role`
|
|
pipenv run \
|
|
molecule test --all
|
|
popd
|
|
done
|