mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-11 15:40:54 +00:00
15 lines
287 B
YAML
15 lines
287 B
YAML
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 |