py-libp2p/.travis.yml

15 lines
287 B
YAML
Raw Normal View History

2018-11-21 04:13:51 +08:00
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 kademlia libp2p network peer stream_muxer transport tests
after_success:
- codecov