2020-10-26 13:53:24 +00:00
|
|
|
[tox]
|
|
|
|
isolated_build = true
|
2020-10-27 09:13:29 +00:00
|
|
|
envlist = py36,py37,py38,mypy,pylint
|
2020-10-26 13:53:24 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
whitelist_externals = poetry
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pytest
|
2020-10-27 08:30:30 +00:00
|
|
|
|
|
|
|
[testenv:mypy]
|
|
|
|
basepython = python3.8
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run mypy .
|
2020-10-27 09:13:29 +00:00
|
|
|
|
|
|
|
[testenv:pylint]
|
|
|
|
basepython = python3.8
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pylint -E bpytop
|