[tox] envlist = black, pylint skipsdist = true [testenv] basepython = python3 deps = -r{toxinidir}/env/requirements-dev.txt [testenv:black] commands = black {toxinidir}/src tests [testenv:pylint] commands = pylint -d C0330,W0511 {toxinidir}/src [testenv:pytest] setenv = PYTHONPATH = {toxinidir}/src commands = pytest -vv -s tests