From c55eb1d082f8a56ef5c95d286eb1ca41ed1f1da8 Mon Sep 17 00:00:00 2001 From: Harshil Darji Date: Wed, 3 Aug 2016 00:42:39 +0530 Subject: [PATCH] Change .travis.yml --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 59517cf45..25abc0577 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ language: python python: - - "2.6" - - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" -install: "pip install pytest pytest-cov" +install: + - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi + - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi + - "pip install pytest pytest-cov" script: py.test --doctest-modules --cov ./ \ No newline at end of file