Skip to content

Commit 6bf3a75

Browse files
authored
Merge pull request #888 from heroku/temporary-revert
Temporary revert
2 parents a165486 + ec56074 commit 6bf3a75

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
- Sqlite3 Update:
66
- Add Tests
77
- Test for Pysqlite
8-
- Bug fix: pipenv no longer installs twice on CI
98
- Add support for staging binary testing
109
--------------------------------------------------------------------------------
1110

bin/steps/pipenv

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,10 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
6060
# avoid this eager behavior.
6161
/app/.heroku/python/bin/pip install pipenv==$PIPENV_VERSION --upgrade --upgrade-strategy only-if-needed &> /dev/null
6262

63-
# Install the test dependencies, for CI.
64-
if [ "$INSTALL_TEST" ]; then
65-
puts-step "Installing test dependencies…"
66-
/app/.heroku/python/bin/pipenv install --dev --system --deploy 2>&1 | cleanup | indent
67-
6863
# Install the dependencies.
69-
elif [[ ! -f Pipfile.lock ]]; then
64+
if [[ ! -f Pipfile.lock ]]; then
7065
puts-step "Installing dependencies with Pipenv $PIPENV_VERSION"
7166
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
72-
7367
else
7468
pipenv-to-pip Pipfile.lock > requirements.txt
7569
"$BIN_DIR/steps/pip-uninstall"
@@ -79,6 +73,12 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
7973
puts-step "Installing dependencies with Pipenv $PIPENV_VERSION"
8074
/app/.heroku/python/bin/pipenv install --system --deploy 2>&1 | indent
8175
fi
76+
77+
# Install the test dependencies, for CI.
78+
if [ "$INSTALL_TEST" ]; then
79+
puts-step "Installing test dependencies…"
80+
/app/.heroku/python/bin/pipenv install --dev --system --deploy 2>&1 | cleanup | indent
81+
fi
8282
fi
8383
else
8484
export SKIP_PIP_INSTALL=1

0 commit comments

Comments
 (0)