py-libp2p/.travis.yml

20 lines
293 B
YAML
Raw Normal View History

2018-11-21 04:13:51 +08:00
language: python
python:
- "3.6"
install:
- pip install codecov pytest pytest-cov
2019-01-10 02:38:56 +08:00
- python setup.py develop
2018-11-21 04:13:51 +08:00
script:
2019-01-10 02:38:56 +08:00
- py.test --cov=./libp2p tests/
- pylint --rcfile=.pylintrc libp2p 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