2018-11-21 04:13:51 +08:00
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
|
|
|
|
install:
|
2019-01-10 09:32:02 +08:00
|
|
|
- pip install --upgrade pip
|
2019-01-10 09:35:03 +08:00
|
|
|
- pip install -r requirements.txt
|
2019-01-10 09:32:02 +08:00
|
|
|
- pip install "pytest>=3.6"
|
|
|
|
- pip install codecov pytest-cov pytest-asyncio pylint
|
2018-11-21 04:13:51 +08:00
|
|
|
|
|
|
|
script:
|
|
|
|
- pytest --cov=./ -v
|
2019-01-10 09:24:41 +08:00
|
|
|
- pylint --rcfile=.pylintrc encryption host libp2p network peer protocol_muxer stream_muxer transport 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
|