travis: don't --use-mirrors with pip

Since the CDN was added to PyPI, --use-mirrors just makes things slower and
less reliable.

http://comments.gmane.org/gmane.comp.python.distutils.devel/18440
This commit is contained in:
Adrian Sampson 2013-07-05 09:36:08 -07:00
parent a6bed1135e
commit 194465e377

View file

@ -3,9 +3,9 @@ python:
- "2.7"
- "2.6"
install:
- travis_retry pip install . --use-mirrors
- travis_retry pip install pylast flask --use-mirrors
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 --use-mirrors; fi"
- travis_retry pip install .
- travis_retry pip install pylast flask
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi"
script: nosetests
branches:
only: