bpytop/tox.ini

28 lines
439 B
INI
Raw Permalink Normal View History

2020-10-26 13:53:24 +00:00
[tox]
2021-01-02 21:24:58 +00:00
isolated_build = true
envlist = py37,py38,py39,mypy,pylint
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39, 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.9
2020-10-27 08:30:30 +00:00
commands =
poetry install -v
poetry run mypy .
2020-10-27 09:13:29 +00:00
[testenv:pylint]
basepython = python3.9
2020-10-27 09:13:29 +00:00
commands =
poetry install -v
poetry run pylint -E bpytop