ec49b4cdf1
Change-Id: I2e8c9c1dab31c939d73a29b0c76d9454458515ef Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
39 lines
813 B
INI
39 lines
813 B
INI
[tox]
|
|
envlist = pep8, pyflakes, py27
|
|
|
|
[testenv]
|
|
# Set STATSD env variables so that statsd code paths are tested.
|
|
setenv = STATSD_HOST=localhost
|
|
STATSD_PORT=8125
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:cover]
|
|
commands =
|
|
python setup.py testr --coverage
|
|
|
|
[testenv:pyflakes]
|
|
deps = pyflakes
|
|
-r{toxinidir}/requirements.txt
|
|
commands = pyflakes zuul setup.py
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:validate-layout]
|
|
commands = zuul-server -c etc/zuul.conf-sample -t -l {posargs}
|
|
|
|
[flake8]
|
|
ignore = E125,H
|
|
show-source = True
|
|
exclude = .venv,.tox,dist,doc,build,*.egg
|