From c231cf0dccbc8c2dfaf8e8605cd3bf066d28a433 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 6 Mar 2018 08:52:08 -0500 Subject: [PATCH] there we go Signed-off-by: Kenneth Reitz --- run-tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run-tests.sh b/run-tests.sh index ff39c7c3..bfeab3d2 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -41,11 +41,11 @@ else python3 -m venv "$RAM_DISK/.venv" fi - echo "Instaling Pipenv…" - "$RAM_DISK/.venv/bin/pip" install -e "$(pwd)" --upgrade-strategy=only-if-needed - # If the lockfile hasn't changed, skip installs. if [[ $(openssl dgst -sha256 Pipfile.lock) != $(cat "$RAM_DISK/.venv/Pipfile.lock.sha256") ]]; then + echo "Instaling Pipenv…" + "$RAM_DISK/.venv/bin/pip" install -e "$(pwd)" --upgrade-strategy=only-if-needed + "$RAM_DISK/.venv/bin/pipenv" install --dev # Hash the lockfile, to skip intalls next time.