2020-10-26 13:53:24 +00:00
|
|
|
[tox]
|
2021-01-02 21:24:58 +00:00
|
|
|
isolated_build = true
|
2021-01-02 21:11:26 +00:00
|
|
|
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]
|
2021-01-02 21:11:26 +00:00
|
|
|
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]
|
2021-01-02 21:11:26 +00:00
|
|
|
basepython = python3.9
|
2020-10-27 09:13:29 +00:00
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pylint -E bpytop
|