[tox] minversion = 2.0 envlist = py36,py35,docs skipsdist = True [testenv] usedevelop = True install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONDONTWRITEBYTECODE = 1 LANGUAGE=en_US deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = py.test [testenv:pep8] basepython = python3 commands = flake8 #[testenv:cover] #commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:docs] basepython = python3 envdir = {toxworkdir}/venv deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -r{toxinidir}/doc/requirements.txt commands = python setup.py build_sphinx [flake8] # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125 builtins = _ exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,pbbuild,pbdelivery,pbconf,python-redfish-[01]* [testenv:venv] basepython = python3 setenv = PYTHONHASHSEED=0 commands = {posargs}