Files
FastAnime/tox.ini
2024-08-06 21:25:39 +03:00

28 lines
448 B
INI

[tox]
requires =
tox>=4
env_list = lint, pyright, py{310,311}
[testenv]
description = run unit tests
deps =poetry
commands =
poetry install
poetry run pytest
[testenv:lint]
description = run linters
skip_install = true
deps =poetry
commands =
poetry install
poetry run black .
[testenv:pyright]
description = run type checking
skip_install = true
deps =poetry
commands =
poetry install --no-root
poetry run pyright