2015-06-21 01:08:46 +00:00
|
|
|
language: python
|
2018-07-27 21:26:31 +00:00
|
|
|
# defaults: the py3.7 environment overrides these
|
|
|
|
dist: trusty
|
|
|
|
sudo: false
|
|
|
|
|
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
|
|
|
install:
|
2016-07-01 16:19:34 +00:00
|
|
|
- pip install -U pip tox virtualenv codecov
|
|
|
|
after_success:
|
|
|
|
- codecov
|
2017-04-23 20:53:12 +00:00
|
|
|
matrix:
|
2018-07-27 21:05:30 +00:00
|
|
|
include:
|
|
|
|
- python: 2.7
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py27-nodilate
|
2018-07-27 21:05:30 +00:00
|
|
|
- python: 3.4
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py34-nodilate
|
2018-07-27 21:05:30 +00:00
|
|
|
- python: 3.5
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py35-coverage
|
2018-07-27 21:05:30 +00:00
|
|
|
- python: 3.6
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py36-coverage
|
2018-07-27 21:05:30 +00:00
|
|
|
- python: 3.7
|
2018-07-27 21:26:31 +00:00
|
|
|
dist: xenial
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py37-coverage
|
2018-07-27 21:05:30 +00:00
|
|
|
- python: nightly
|
2019-02-10 19:02:15 +00:00
|
|
|
script: tox -e py-coverage
|
|
|
|
- python: 3.6
|
2019-02-10 19:10:39 +00:00
|
|
|
script: tox -e flake8less
|
2019-02-10 19:07:43 +00:00
|
|
|
env: FLAKE8
|
2019-05-05 22:02:00 +00:00
|
|
|
- python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
script: tox -e docs
|
|
|
|
env: DOCS
|
2017-04-23 20:53:12 +00:00
|
|
|
allow_failures:
|
2018-07-27 21:17:16 +00:00
|
|
|
- python: nightly
|