aioupnp/.travis.yml

16 lines
277 B
YAML
Raw Normal View History

2018-09-25 22:01:03 +02:00
sudo: required
dist: xenial
language: python
python: "3.7"
before_install:
- pip install pylint coverage
- pip install -e .
2018-10-08 04:30:13 +02:00
# - pylint aioupnp
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)