pipfile.lock

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-06 10:17:29 -05:00
parent 91625d7ea0
commit 8e13029b7e
+2 -2
View File
@@ -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