2018-09-25 16:01:03 -04:00
|
|
|
sudo: required
|
|
|
|
dist: xenial
|
|
|
|
language: python
|
|
|
|
python: "3.7"
|
|
|
|
|
|
|
|
before_install:
|
2018-10-08 16:43:20 -04:00
|
|
|
- pip install pylint coverage mypy lxml
|
2018-09-25 16:01:03 -04:00
|
|
|
- pip install -e .
|
2018-10-08 16:43:20 -04:00
|
|
|
- mypy . --txt-report . --scripts-are-modules; cat index.txt; rm index.txt
|
2018-09-25 16:01:03 -04:00
|
|
|
|
|
|
|
script:
|
2018-10-07 22:30:13 -04:00
|
|
|
- HOME=/tmp coverage run --source=aioupnp -m unittest -v
|
2018-09-25 16:01:03 -04:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|