Commit 940652e7 authored by Jason Madden's avatar Jason Madden

Use quiet mode to install pip.

PyPy is failing with https://travis-ci.org/github/gevent/gevent/jobs/699973435
parent f91245c5
......@@ -90,7 +90,12 @@ install () {
$DESTINATION/bin/python --version
# Set the PATH to include the install's bin directory so pip
# doesn't nag.
PATH="$DESTINATION/bin/:$PATH" $SNAKEPIT/$ALIAS -m pip install --upgrade pip wheel virtualenv
# Use quiet mode for this; PyPy2 has been seen to output
# an error:
# UnicodeEncodeError: 'ascii' codec can't encode
# character u'\u258f' in position 6: ordinal not in range(128)
# https://travis-ci.org/github/gevent/gevent/jobs/699973435
PATH="$DESTINATION/bin/:$PATH" $SNAKEPIT/$ALIAS -m pip install -q --upgrade pip wheel virtualenv
ls -l $SNAKEPIT
ls -l $BASE/versions
......
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