2020-04-02 10:46:11 +02:00
|
|
|
os: linux
|
2017-02-14 21:58:07 +01:00
|
|
|
language: python
|
2017-04-18 10:48:04 +02:00
|
|
|
cache: pip
|
2020-03-26 20:03:04 +01:00
|
|
|
dist: bionic
|
2017-02-14 21:58:07 +01:00
|
|
|
python:
|
|
|
|
- "3.5"
|
|
|
|
- "3.6"
|
2019-09-16 20:45:01 +02:00
|
|
|
- "3.7"
|
2020-01-04 19:50:06 +01:00
|
|
|
- "3.8"
|
2017-02-14 21:58:07 +01:00
|
|
|
install:
|
|
|
|
- pip install -U pip setuptools
|
2020-01-08 19:22:08 +01:00
|
|
|
- pip install tox-travis
|
2017-06-01 23:00:22 +02:00
|
|
|
- pip install codecov
|
2020-06-12 15:52:43 +02:00
|
|
|
- pip install pre-commit
|
2017-04-05 23:27:04 +02:00
|
|
|
script:
|
|
|
|
- tox
|
2020-06-12 15:52:43 +02:00
|
|
|
- pre-commit run --all-files
|
2017-06-01 23:00:22 +02:00
|
|
|
after_success:
|
|
|
|
- codecov
|