aioupnp/.travis.yml
Jack Robison 1098177bae
mypy
2018-10-08 16:26:49 -04:00

17 lines
295 B
YAML

sudo: required
dist: xenial
language: python
python: "3.7"
before_install:
- pip install pylint coverage mypy
- pip install -e .
script:
# - pylint aioupnp
- mypy .
- HOME=/tmp coverage run --source=aioupnp -m unittest -v
after_success:
- bash <(curl -s https://codecov.io/bash)