2018-11-20 21:13:51 +01:00
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
|
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install codecov pytest pytest-cov
|
|
|
|
|
|
|
|
script:
|
|
|
|
- pytest --cov=./ -v
|
2018-11-26 18:24:29 -05:00
|
|
|
- pylint --rcfile=.pylintrc encryption host libp2p network peer stream_muxer transport tests
|
2018-11-20 21:13:51 +01:00
|
|
|
|
|
|
|
after_success:
|
2018-11-26 13:30:05 -05:00
|
|
|
- codecov
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
|