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