diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +[flake8] +max-line-length = 100 +exclude = fietsboek/alembic +per-file-ignores = + fietsboek/models/__init__.py:F401 + +[tox] +envlist = python,pylint,flake8 + +[testenv] +deps = pytest +extras = testing +passenv = + TERM +commands = + pytest {posargs} + +[testenv:pylint] +deps = pylint +usedevelop = true +commands = + pylint fietsboek + +[testenv:flake8] +deps = flake8 +usedevelop = true +commands = + flake8 fietsboek + +[testenv:sphinx] +deps = sphinx +usedevelop = true +allowlist_externals = make +changedir={toxinidir}{/}doc +commands = + make html |