Files @ 3f1d8a541572
Branch filter:

Location: rattail-project/rattail/tox.ini - annotation

lance
Remove the `RattailConfigWrapper` class

just using `RattailConfig` directly now

[tox]
envlist = py36, py37, py38, py39, py310, py311

# TODO: can remove this when we drop py36 support
# nb. need this for testing older python versions
# https://tox.wiki/en/latest/faq.html#testing-end-of-life-python-versions
requires = virtualenv<20.22.0

[testenv]
deps =
        git+https://kallithea.rattailproject.org/rattail-project/wuttjamaican@master#egg=WuttJamaican
extras = bouncer,db,tests
commands = pytest {posargs}

[testenv:py37]
# nb. newer libs may cause segfault for this one, so must avoid that
deps =
        git+https://kallithea.rattailproject.org/rattail-project/wuttjamaican@master#egg=WuttJamaican
        coverage<6.5
        wheel<0.41

[testenv:coverage]
basepython = python3
deps =
        git+https://kallithea.rattailproject.org/rattail-project/wuttjamaican@master#egg=WuttJamaican
        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