find-work/tox.ini
Anna “CyberTailor” 28bbdf9774
cli: initial mockup
2024-01-05 20:04:47 +05:00

29 lines
477 B
INI

# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2023-2024 Anna <cyber@sysrq.in>
[tox]
minversion = 4.0
env_list = py3{10,11,12}, lint
[testenv]
description = run the tests
deps =
mypy
commands =
mypy find_work
[testenv:lint]
description = run the linters
skip_install = true
deps =
pycodestyle
pyflakes
reuse
commands =
reuse lint
pyflakes {posargs:find_work}
pycodestyle {posargs:find_work}
[pycodestyle]
max-line-length = 100