Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
8d98c27c
Commit
8d98c27c
authored
Mar 23, 2018
by
Liu Junxiao
Committed by
jxltom
Sep 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Move SKIP_PIP_INSTALL=1 after pip-uninstall step otherwise pip-uninstall will be bypassed"
This reverts commit
e3dc351e
.
parent
e3dc351e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pipenv
bin/steps/pipenv
+3
-3
No files found.
bin/steps/pipenv
View file @
8d98c27c
...
...
@@ -32,6 +32,9 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# Measure that we're using Pipenv.
mcount
"tool.pipenv"
# Skip pip install, later.
export
SKIP_PIP_INSTALL
=
1
# Set PIP_EXTRA_INDEX_URL
if
[[
-r
$ENV_DIR
/PIP_EXTRA_INDEX_URL
]]
;
then
PIP_EXTRA_INDEX_URL
=
"
$(
cat
"
$ENV_DIR
/PIP_EXTRA_INDEX_URL"
)
"
...
...
@@ -62,9 +65,6 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
puts-step
"Installing test dependencies…"
/app/.heroku/python/bin/pipenv
install
--dev
--system
--deploy
2>&1 | cleanup | indent
fi
# Skip pip install, later.
export
SKIP_PIP_INSTALL
=
1
fi
else
export
SKIP_PIP_INSTALL
=
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment