You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
sudo: false
|
|
language: python
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: 3.5
|
|
env: TOX_ENV=py35
|
|
- os: linux
|
|
python: 3.6
|
|
env: TOX_ENV=py36
|
|
- os: linux
|
|
python: 3.6
|
|
env: TOX_ENV=flake8
|
|
|
|
install:
|
|
- pip install tox coverage codecov
|
|
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
|
|
after_success:
|
|
- codecov |