2017-02-14 21:58:07 +01:00
|
|
|
sudo: false
|
|
|
|
language: python
|
2017-04-18 10:48:04 +02:00
|
|
|
cache: pip
|
2017-02-14 21:58:07 +01:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
|
|
|
- "3.6"
|
2018-10-03 18:11:19 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: 3.7 # https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2017-02-14 21:58:07 +01:00
|
|
|
install:
|
|
|
|
- pip install -U pip setuptools
|
2017-04-05 23:44:52 +02:00
|
|
|
- pip install tox-travis pre-commit
|
2017-06-01 23:00:22 +02:00
|
|
|
- pip install codecov
|
2017-04-05 23:27:04 +02:00
|
|
|
script:
|
|
|
|
- tox
|
2017-11-29 23:11:40 +01:00
|
|
|
- pre-commit run --all-files
|
2017-06-01 23:00:22 +02:00
|
|
|
after_success:
|
|
|
|
- codecov
|