3
0
Fork 0
wuttjamaican/tox.ini
Lance Edgar ac65ec891b add initial pylint config, just one checker
will clean these up one by one so we can use fail-under=10 for
buildbot pylint
2025-08-30 15:46:42 -05:00

28 lines
550 B
INI

[tox]
envlist = py38, py39, py310, py311, nox
[testenv]
extras = db,docs,tests
deps = prompt_toolkit
commands = pytest {posargs}
[testenv:nox]
extras = tests
[testenv:pylint]
basepython = python3.11
extras =
deps = pylint
commands = pylint wuttjamaican
[testenv:coverage]
basepython = python3.11
extras = db,tests
commands = pytest --cov=wuttjamaican --cov-report=html --cov-fail-under=100
[testenv:docs]
basepython = python3.11
extras = db,docs
changedir = docs
commands = sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs