From 194465e37775408464d7628231946ea2a3af3d86 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 5 Jul 2013 09:36:08 -0700 Subject: [PATCH] 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 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 746f430ad..f02d210d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: