py-libp2p/.travis.yml

24 lines
387 B
YAML
Raw Normal View History

2018-11-21 04:13:51 +08:00
language: python
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
2018-11-21 04:13:51 +08:00
install:
2019-01-10 09:32:02 +08:00
- pip install --upgrade pip
2019-01-11 08:44:24 +08:00
- pip install -r requirements_dev.txt
2019-01-10 02:38:56 +08:00
- python setup.py develop
2018-11-21 04:13:51 +08:00
script:
- pytest --cov=./libp2p tests/
2019-01-10 20:45:03 +08:00
- pylint --rcfile=.pylintrc libp2p/!(kademlia) tests
2018-11-21 04:13:51 +08:00
after_success:
2018-11-27 02:30:05 +08:00
- codecov
notifications:
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
2019-01-10 02:38:56 +08:00