2015-09-22 20:33:04 +00:00
|
|
|
sudo: false
|
2015-06-21 01:08:46 +00:00
|
|
|
language: python
|
2016-03-02 21:35:58 +00:00
|
|
|
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"
|
2015-09-27 01:32:02 +00:00
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
2016-12-27 05:39:58 +00:00
|
|
|
- "3.6-dev"
|
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
|