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.
19 lines
267 B
YAML
19 lines
267 B
YAML
7 years ago
|
sudo: false
|
||
|
language: python
|
||
|
matrix:
|
||
|
include:
|
||
|
- os: linux
|
||
|
python: 3.5
|
||
|
env: TOX_ENV=py35
|
||
|
- os: linux
|
||
|
python: 3.6
|
||
|
env: TOX_ENV=py36
|
||
|
|
||
|
install:
|
||
|
- pip install tox coverage codecov
|
||
|
|
||
|
script:
|
||
|
- tox -e $TOX_ENV
|
||
|
|
||
|
after_success:
|
||
|
- codecov
|