29 lines
446 B
INI
29 lines
446 B
INI
# Reference: https://github.com/ethereum/py_ecc/blob/d0da74402210ea1503ef83b3c489d5b5eba7f7bf/tox.ini
|
|
|
|
[tox]
|
|
envlist =
|
|
py37-test
|
|
lint
|
|
|
|
[flake8]
|
|
max-line-length= 100
|
|
exclude=
|
|
ignore=
|
|
|
|
[testenv]
|
|
deps =
|
|
passenv = CI TRAVIS TRAVIS_*
|
|
extras = test
|
|
commands =
|
|
pytest --cov=./libp2p tests/
|
|
codecov
|
|
basepython =
|
|
py37: python3.7
|
|
|
|
[testenv:lint]
|
|
basepython = python3
|
|
extras = dev
|
|
whitelist_externals = make
|
|
commands =
|
|
make lintroll
|