From ca3f2f8fea5b470f04c23e8bf48af5a41f7fe3ad Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Fri, 18 Jul 2014 18:28:23 +0200 Subject: [PATCH] --use-mirrors is deprecated --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 175530b..17b28a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,14 +16,18 @@ matrix: env: DJANGO=django==1.4.5 - python: "3.2" env: DJANGO=django==1.4.5 + install: - - "pip install $DJANGO coverage==3.6 --use-mirrors" + - pip install $DJANGO coverage==3.6 + script: - coverage run --source=polymorphic runtests.py - coverage report -m + after_success: - - "pip install coveralls==0.2 --use-mirrors" + - pip install coveralls==0.2 - coveralls + branches: only: - master