nodepool/tox.ini
David Shrewsbury e0ac89ccf9 Use py3 in docs generation
'tox -edocs' will annoyingly use py2 if it's available. Since
everything else is py3, do that for docs, too.

Change-Id: Ia8bbde27ad4d97fd6b0859536580a2268bda0933
2017-11-27 12:04:29 -05:00

50 lines
1.2 KiB
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = pep8,py35
[testenv]
# Set STATSD env variables so that statsd code paths are tested.
setenv = STATSD_HOST=localhost
STATSD_PORT=8125
VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
passenv = NODEPOOL_ZK_HOST
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
basepython = python3
commands = flake8 nodepool
[testenv:bindep]
# 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
[testenv:cover]
basepython = python3
commands =
python setup.py testr --coverage
[testenv:docs]
basepython = python3
commands =
python setup.py build_sphinx
[testenv:venv]
basepython = python3
commands = {posargs}
[flake8]
ignore = E123,E125,H
select = H231,H233,F
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg