magic-wormhole/.travis.yml
Brian Warner ff619c073e turn on python3.6 builds for tox and travis
Python3.6 was just released a few days ago, and travis hasn't yet added it
for real, so we use "3.6-dev" until they get it deployed completely.
2016-12-27 00:39:58 -05:00

21 lines
304 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"
- "3.6-dev"
install:
- pip install -U pip tox virtualenv codecov
script:
- tox -e coverage
after_success:
- codecov