Files
dc-deployments-automation/bin/run-all-tests
2019-06-14 10:23:40 +10:00

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