diff --git a/run-tests.sh b/run-tests.sh index f6839368..2b1d90d1 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -22,13 +22,13 @@ if [[ ! -z "$CI" ]]; then TAP_OUTPUT="1" export TAP_OUTPUT - if [[ $(openssl dgst -sha256 Pipfile.lock) != $(cat "$RAM_DISK/.venv/Pipfile.lock.sha256") ]]; then + if [[ $(openssl dgst -sha256 Pipfile.lock) != $(cat "$RAM_DISK/Pipfile.lock.sha256") ]]; then echo "Installing Pipenv…" pip install -e "$(pwd)" --upgrade --upgrade-strategy=only-if-needed pipenv install --deploy --system --dev - openssl dgst -sha256 Pipfile.lock > "$RAM_DISK/.venv/Pipfile.lock.sha256" + openssl dgst -sha256 Pipfile.lock > "$RAM_DISK/Pipfile.lock.sha256" fi else