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.
This commit is contained in:
Brian Warner 2016-05-06 09:00:02 -07:00
parent 46fb9d9cfc
commit 7b6c015233

View File

@ -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