rattail/tox.ini
Lance Edgar d4f5515f20 fix: cleanup old code for "record changes" session feature
had some tests failing, and one thing led to another..  apparenty we
still had support for some pretty old sqlalchemy so no need to keep
that around.
2024-08-27 22:56:32 -05:00

26 lines
487 B
INI

[tox]
envlist = py38, py39, py310, py311, nox
[testenv]
extras = bouncer,db,tests
commands = pytest {posargs}
[testenv:nox]
extras = tests
[testenv:coverage]
basepython = python3
deps =
appy
invoke
luigi
xlrd
extras = bouncer,db,tests
commands = pytest --cov=rattail --cov-report=html
[testenv:docs]
basepython = python3
changedir = docs
extras = bouncer,db,tests,docs
commands = sphinx-build -b html -d {envtmpdir}/doctrees -W -T . {envtmpdir}/docs