2018-11-21 04:13:51 +08:00
|
|
|
language: python
|
|
|
|
|
2019-02-10 10:40:05 +08:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: 3.7
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2018-11-21 04:13:51 +08:00
|
|
|
|
|
|
|
install:
|
2019-01-10 09:32:02 +08:00
|
|
|
- pip install --upgrade pip
|
2019-01-11 08:44:24 +08:00
|
|
|
- pip install -r requirements_dev.txt
|
2019-01-10 02:38:56 +08:00
|
|
|
- python setup.py develop
|
2018-11-21 04:13:51 +08:00
|
|
|
|
|
|
|
script:
|
2019-01-10 03:01:46 +08:00
|
|
|
- pytest --cov=./libp2p tests/
|
2019-01-10 20:45:03 +08:00
|
|
|
- pylint --rcfile=.pylintrc libp2p/!(kademlia) 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
|
|
|
|