File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 6
6
- Sqlite3 Update:
7
7
- Add Tests
8
8
- Test for Pysqlite
9
- - Bug fix: pipenv no longer installs twice on CI
10
9
- Add support for staging binary testing
11
10
--------------------------------------------------------------------------------
12
11
Original file line number Diff line number Diff line change @@ -60,16 +60,10 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
60
60
# avoid this eager behavior.
61
61
/app/.heroku/python/bin/pip install pipenv==$PIPENV_VERSION --upgrade --upgrade-strategy only-if-needed & > /dev/null
62
62
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
-
68
63
# Install the dependencies.
69
- elif [[ ! -f Pipfile.lock ]]; then
64
+ if [[ ! -f Pipfile.lock ]]; then
70
65
puts-step " Installing dependencies with Pipenv $PIPENV_VERSION …"
71
66
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
72
-
73
67
else
74
68
pipenv-to-pip Pipfile.lock > requirements.txt
75
69
" $BIN_DIR /steps/pip-uninstall"
@@ -79,6 +73,12 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
79
73
puts-step " Installing dependencies with Pipenv $PIPENV_VERSION …"
80
74
/app/.heroku/python/bin/pipenv install --system --deploy 2>&1 | indent
81
75
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
82
82
fi
83
83
else
84
84
export SKIP_PIP_INSTALL=1
You can’t perform that action at this time.
0 commit comments