nodepool/tox.ini
Ondřej Nový 2f67ab6677 Deprecated tox -downloadcache option removed
Caching is enabled by default from pip version 6.0

More info:
https://testrun.org/tox/latest/config.html#confval-downloadcache=path
https://pip.pypa.io/en/stable/reference/pip_install/#caching

Change-Id: I055ab0b303769424a0973665632f3e4b3feafd08
2015-12-11 22:50:47 +01:00

37 lines
750 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = pep8, py27
[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
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8 nodepool
[testenv:cover]
commands =
python setup.py testr --coverage
[testenv:docs]
commands =
python setup.py build_sphinx
[testenv:venv]
commands = {posargs}
[flake8]
ignore = E123,E125,H
select = H231,F
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg