From 7b6c0152335905cd078d03fdba5aabee8d7fc1b8 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 6 May 2016 09:00:02 -0700 Subject: [PATCH] travis: use tox, temporarily disable coverage I don't yet know how to get tox to run the equivalent of "coverage run `which trial` wormhole.test", since tox doesn't use a shell. But I want to switch travis to tox so we get the same dependencies (in particular the pyflakes constraint) everywhere. I'll figure out how to re-enable coverage data soon. --- .travis.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index a428809..4247721 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,13 +12,6 @@ python: - "3.4" - "3.5" install: - - pip install -U pip - - pip install pyflakes coverage codecov - - pip install --editable . + - pip install -U pip tox virtualenv script: - - pyflakes setup.py src - - wormhole --version - - coverage run --branch `which trial` wormhole -after_success: - - coverage report - - codecov + - tox -e py