[tox] minversion = 2.0 envlist = py36,py37,py38,py39,pep8 skipsdist = True [testenv] usedevelop = True install_command = pip3 install {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 deps = -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:pep8] commands = ; doc8 doc/source/ README.rst flake8 {posargs} bandit -r devices -x test -n5 -ll # -s B320