[tox] minversion = 2.9.1 skipsdist = True envlist = py35,py27,pep8 [testenv] usedevelop = True install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_STDERR_CAPTURE=1 OS_STDOUT_CAPTURE=1 passenv = OS_TEST_TIMEOUT STORYBOARD_TEST_DB deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = ostestr '{posargs}' whitelist_externals = bash [testenv:sqlite] basepython = python3 setenv = STORYBOARD_TEST_DB=sqlite:///{envtmpdir} OS_STDERR_CAPTURE=1 OS_STDOUT_CAPTURE=1 [testenv:pep8] basepython = python3 commands = flake8 [testenv:venv] basepython = python2 commands = {posargs} [testenv:docs] basepython = python3 deps = -r{toxinidir}/doc/requirements.txt commands = rm -rf doc/html doc/build rm -rf doc/source/apidoc doc/source/api sphinx-build -W -b html doc/source doc/build/html [testenv:cover] basepython = python3 setenv = VIRTUAL_ENV={envdir} PYTHON=coverage run --source storyboard --parallel-mode commands = stestr run {posargs} coverage combine coverage html -d cover coverage xml -o cover/coverage.xml [flake8] # E125 and E128 are ignored on purpose, they are invalid pep8 # The following rules should either be addressed or determined to be # skippable long term. # E265 is ignored to make switch to newer hacking easier # H405 is ignored to make switch to newer hacking easier ignore = E125,E128,E265,H405 builtins = _ show-source = True exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build [testenv:bindep] basepython = python3 # Do not install any requirements. We want this to be fast and work even if # system dependencies are missing, since it's used to tell you what system # dependencies are missing! This also means that bindep must be installed # separately, outside of the requirements files. deps = bindep commands = bindep test [hacking] import_exceptions = storyboard._i18n