magic-wormhole/.travis.yml

27 lines
540 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"
2015-06-21 01:08:46 +00:00
install:
- pip install -U pip
- pip install pyflakes coverage codecov
- pip install "git+https://github.com/twisted/twisted#egg=twisted"
# - pip install "Twisted>=15.5.0"
- pip install --editable .
2015-06-21 01:08:46 +00:00
script:
- pyflakes setup.py src
- wormhole --version
- coverage run --branch `which trial` wormhole
after_success:
- coverage report
- codecov