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