aioupnp/.travis.yml
Jack Robison c0ef4337fa
travis
2018-10-08 16:43:20 -04:00

16 lines
344 B
YAML

sudo: required
dist: xenial
language: python
python: "3.7"
before_install:
- pip install pylint coverage mypy lxml
- pip install -e .
- mypy . --txt-report . --scripts-are-modules; cat index.txt; rm index.txt
script:
- HOME=/tmp coverage run --source=aioupnp -m unittest -v
after_success:
- bash <(curl -s https://codecov.io/bash)