From 8bae14ba1cd3d6bcd5764dc4561088abe5c4b747 Mon Sep 17 00:00:00 2001 From: Anup Kumar Panwar <1anuppanwar@gmail.com> Date: Fri, 29 Sep 2017 11:22:32 +0530 Subject: [PATCH] Update .travis.yml --- .travis.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index fe3ec15a6..1e0ad55bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,19 @@ language: python python: + - "2.6" + - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" + - "3.5-dev" # 3.5 development branch - "3.6" - - "3.6-dev" - -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 ./ + - "3.6-dev" # 3.6 development branch + - "3.7-dev" # 3.7 development branch + - "nightly" + +install: + - pip install -r requirements.txt + +script: + - py.test