Commit 63810f29 authored by Kenneth Reitz's avatar Kenneth Reitz

passing tests

parent 0de749a6
...@@ -4,8 +4,8 @@ if [[ -f Pipfile ]]; then ...@@ -4,8 +4,8 @@ if [[ -f Pipfile ]]; then
if [[ ! -f requirements.txt ]]; then if [[ ! -f requirements.txt ]]; then
puts-step "Generating 'requirements.txt' with pipenv" puts-step "Generating 'requirements.txt' with pipenv"
pip install pipenv --upgrade &> /dev/null /app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
pipenv lock --requirements > requirements.txt 2> /dev/null /app/.heroku/python/bin/pipenv lock --requirements > requirements.txt 2> /dev/null
pipstrip requirements.txt pipstrip requirements.txt
fi fi
......
...@@ -46,7 +46,9 @@ if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_VERSION* ]]; then ...@@ -46,7 +46,9 @@ if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_VERSION* ]]; then
trap "rm -rf $TMPTARDIR" RETURN trap "rm -rf $TMPTARDIR" RETURN
puts-step "Bootstrapping pip" puts-step "Bootstrapping pip"
python $ROOT_DIR/vendor/get-pip.py /app/.heroku/python/bin/python $ROOT_DIR/vendor/get-pip.py | indent
/app/.heroku/python/bin/pip install setuptools --upgrade &> /dev/null
fi fi
......
...@@ -150,6 +150,8 @@ _assertContains() ...@@ -150,6 +150,8 @@ _assertContains()
debug() debug()
{ {
cat $STD_OUT cat $STD_OUT
echo '^^^^^^'
cat $STD_ERR
} }
assertContains() assertContains()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment