Files
dc-deployments-automation/bin/run-all-tests
2019-06-13 15:30:56 +10:00

14 lines
234 B
Bash
Executable File

#!/bin/bash
set -e
# Install dev packages from Pipfile.loc if necessary.
pipenv sync --dev
for role in `find roles/ -name molecule | sort`; do
pushd `dirname $role`
pipenv run \
molecule test --all
popd
done