DCD-386: Cleanups and clarifications.

This commit is contained in:
Steve Smith
2019-06-13 15:30:56 +10:00
parent 8925cd5af9
commit e1dab14a7f
3 changed files with 11 additions and 7 deletions

View File

@@ -2,11 +2,12 @@
set -e
# Use Ansible from virtualenv if provided
# 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
pipenv run \
molecule test --all
popd
done