8bcffb67cb
* ignore TODO and kademlia * remove unnecessary pass * fixed swarm warnings * fixed peerdata_interface warnings * fixed peer warnings * fixed rest of linting errors * trying to fix last error * fixed dup errors
19 lines
341 B
YAML
19 lines
341 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install codecov pytest pytest-cov
|
|
|
|
script:
|
|
- pytest --cov=./ -v
|
|
- pylint --rcfile=.pylintrc encryption host libp2p network peer stream_muxer transport tests
|
|
|
|
after_success:
|
|
- codecov
|
|
|
|
notifications:
|
|
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
|