From 204ca43795ed83eca53fad83398661927013449a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Fri, 23 Dec 2016 21:51:25 +0100 Subject: [PATCH] py3.x --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 73ebf63..408a6ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,12 +9,12 @@ python: cache: pip sudo: required script: - - nosetests --with-coverage + - if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then nosetests --with-coverage; else nosetests; fi install: - - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; else pip install coverage; fi + - pip install coverage - pip install codeclimate-test-reporter - pip install -r requirements.txt after_success: - - CODECLIMATE_REPO_TOKEN=e8e05973a6c49139de5f98013cd285f9238b78d20f053f37f6e7deeab2c2c52f codeclimate-test-reporter + - if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then CODECLIMATE_REPO_TOKEN=e8e05973a6c49139de5f98013cd285f9238b78d20f053f37f6e7deeab2c2c52f codeclimate-test-reporter; fi services: - rabbitmq -- GitLab