26 lines
430 B
YAML
26 lines
430 B
YAML
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: TOXENV=py37-test
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: TOXENV=lint
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: TOXENV=py37-interop
|
|
before_install:
|
|
- ./install_interop_go_pkgs.sh
|
|
|
|
install:
|
|
- pip install --upgrade pip
|
|
- pip install tox
|
|
|
|
script:
|
|
- tox
|
|
|
|
notifications:
|
|
slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2
|