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-09-25 22:05:07 +02:00
|
|
|
# - pylint txupnp
|
2018-09-25 22:01:03 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
- HOME=/tmp coverage run --source=txupnp -m twisted.trial tests
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|