From 8925cd5af93c994d6a8f1cc8b2ccca8ea51381b3 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Thu, 13 Jun 2019 15:24:31 +1000 Subject: [PATCH] DCD-386: Use sync rather than install to use locked package versions. --- bin/install-ansible | 2 +- bin/run-all-tests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install-ansible b/bin/install-ansible index c76fc9f..f29e024 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -12,4 +12,4 @@ set -e pip install pipenv -pipenv install +pipenv sync diff --git a/bin/run-all-tests b/bin/run-all-tests index 0967276..82b1c02 100755 --- a/bin/run-all-tests +++ b/bin/run-all-tests @@ -3,7 +3,7 @@ set -e # Use Ansible from virtualenv if provided -pipenv install molecule docker six +pipenv sync --dev for role in `find roles/ -name molecule | sort`; do pushd `dirname $role`