26 lines
489 B
INI
26 lines
489 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = pep8
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
sitepackages = False
|
|
downloadcache = {toxworkdir}/_download
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8 openstack-docs-theme
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools
|
|
show-source = True
|