magic-wormhole/.travis.yml

25 lines
364 B
YAML
Raw Normal View History

sudo: false
2015-06-21 01:08:46 +00:00
language: python
cache: pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
branches:
except:
- /^WIP-.*$/
2015-06-21 01:08:46 +00:00
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
2015-06-21 01:08:46 +00:00
install:
2016-07-01 16:19:34 +00:00
- pip install -U pip tox virtualenv codecov
2015-06-21 01:08:46 +00:00
script:
2016-07-01 16:19:34 +00:00
- tox -e coverage
after_success:
- codecov
matrix:
allow_failures:
- python: "nightly"