732a15ec93
* bump version * enable 3.7 in travis
24 lines
387 B
YAML
24 lines
387 B
YAML
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
|
|
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
|
|
|