24 lines
484 B
YAML
24 lines
484 B
YAML
sudo: true
|
|
dist: xenial
|
|
language: python
|
|
install:
|
|
- pip install tox-travis
|
|
- pip install codecov
|
|
matrix:
|
|
include:
|
|
- name: "Python 3.5"
|
|
python: 3.5
|
|
env: ENV=pep8,py3
|
|
- name: "Python 3.6"
|
|
python: 3.6
|
|
env: ENV=pep8,py3
|
|
- name: "Python 3.7"
|
|
python: 3.7
|
|
env: ENV=pep8,py3
|
|
- name: "Python 3.8"
|
|
python: 3.7
|
|
env: ENV=pep8,py3
|
|
script:
|
|
- tox -c tox.ini -e $ENV
|
|
after_success:
|
|
- codecov --verbose --gcov-glob unit_tests/* |