
Currently translatable messages are not used, so there are no uses of _. This will ensure if _ is used in the future pep8 won't assume it is provided as a builtin, and to be consistent with the rest of oslo. Change-Id: I5b840eaf1a55d3df40ed56af19ea7349f167b5a9
34 lines
654 B
INI
34 lines
654 B
INI
[tox]
|
|
distribute = False
|
|
envlist = py33,py34,py26,py27,pep8
|
|
|
|
[testenv]
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands =
|
|
python setup.py testr --coverage
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
show-source = True
|
|
exclude = .tox,dist,doc,*.egg,build
|
|
|
|
[hacking]
|
|
import_exceptions =
|
|
six.moves.mock
|
|
six.moves.mox
|