novel-stats/tox.ini

30 lines
503 B
INI
Raw Permalink Normal View History

2021-10-22 20:44:56 +00:00
[tox]
env_list = py38,py39,py310,py311
2021-10-22 20:44:56 +00:00
skip_missing_interpreters = True
2023-10-24 02:09:31 +00:00
package = editable
minversion = 4.0
2021-10-22 20:44:56 +00:00
[testenv]
2023-10-24 02:09:31 +00:00
deps =
-r test_requirements.txt
pass_env = COVERAGE_FILE
2021-10-22 20:44:56 +00:00
commands =
pytest {posargs}
black --check .
2021-10-22 20:44:56 +00:00
isort --check-only --settings-path setup.cfg .
flake8 novel_stats tests
[testenv:black]
commands =
black {posargs} .
[testenv:test]
commands =
pytest {posargs}
[testenv:isort]
2023-10-24 02:09:31 +00:00
deps =
{[testenv]deps}
2021-10-22 20:44:56 +00:00
commands =
isort --settings-path setup.cfg .