From 8f295f7a037e0d512181946b9b87636f4a853e26 Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Sun, 16 Jun 2013 08:53:45 -0700 Subject: [PATCH] PyPI now has CDN; Travis shouldn't use mirrors Now that PyPI utilizes a CDN, the "--use-mirrors" setting slows down the install process and has essentially been deprecated. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ff512b6..918fd3f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ before_install: - sudo locale-gen fr_FR.UTF-8 tr_TR.UTF-8 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then ln -s /usr/share/asciidoc/asciidocapi.py ~/virtualenv/python2.7/lib/python2.7/site-packages/; fi - - pip install mock --use-mirrors - - pip install . --use-mirrors - - pip install --use-mirrors Markdown + - pip install mock + - pip install . + - pip install Markdown script: python -m unittest discover