mirror of https://github.com/aristocratos/bpytop
22 lines
360 B
INI
22 lines
360 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py36,py37,py38,mypy,pylint
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands =
|
|
poetry install -v
|
|
poetry run pytest
|
|
|
|
[testenv:mypy]
|
|
basepython = python3.8
|
|
commands =
|
|
poetry install -v
|
|
poetry run mypy .
|
|
|
|
[testenv:pylint]
|
|
basepython = python3.8
|
|
commands =
|
|
poetry install -v
|
|
poetry run pylint -E bpytop
|