[tox] minversion = 3.18.0 envlist = docs,pep8 skipsdist = True ignore_basepython_conflict = True [testenv] basepython = python3 usedevelop = True setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/test-requirements.txt [testenv:docs] allowlist_externals = rm commands = rm -fr doc/build sphinx-build -W -b html doc/source doc/build/html doc8 --ignore D001 doc/source whereto doc/source/_extra/.htaccess doc/test/redirect-tests.txt [testenv:pep8] commands = flake8 doc8 --ignore D001 specs/ [testenv:venv] commands = {posargs} [flake8] # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125 exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build