7b6c015233
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.
18 lines
249 B
YAML
18 lines
249 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
before_cache:
|
|
- rm -f $HOME/.cache/pip/log/debug.log
|
|
branches:
|
|
except:
|
|
- /^WIP-.*$/
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
install:
|
|
- pip install -U pip tox virtualenv
|
|
script:
|
|
- tox -e py
|