mirror of https://github.com/libp2p/py-libp2p.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
332 B
20 lines
332 B
language: python
|
|
|
|
python:
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install --upgrade pip
|
|
- pip install -r requirements_dev.txt
|
|
- python setup.py develop
|
|
|
|
script:
|
|
- pytest --cov=./libp2p tests/
|
|
- pylint --rcfile=.pylintrc libp2p/!(kademlia) tests
|
|
|
|
after_success:
|
|
- codecov
|
|
|
|
notifications:
|
|
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
|
|
|
|
|