24 lines
366 B
YAML
24 lines
366 B
YAML
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
env: TOXENV=py37-test
|
|
after_success:
|
|
- codecov
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
env: TOXENV=lint
|
|
|
|
install:
|
|
- pip install --upgrade pip codecov tox
|
|
|
|
script:
|
|
- tox
|
|
|
|
notifications:
|
|
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
|