6bee3e5f65
Fixes H602 errors Change-Id: I071507efd9eb40240fa630ebfded8b83e54f3ce5
47 lines
1.1 KiB
INI
47 lines
1.1 KiB
INI
[tox]
|
|
envlist = py26,py27,py33,pep8
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
EVENTLET_NO_GREENDNS=yes
|
|
commands =
|
|
bash -x {toxinidir}/run-tests.sh {posargs}
|
|
{toxinidir}/tools/config/check_uptodate.sh
|
|
|
|
sitepackages = False
|
|
downloadcache = {toxworkdir}/_download
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands = bash -x {toxinidir}/run-tests.sh --coverage
|
|
|
|
[testenv:pep8]
|
|
# Install bounded pep8/pyflakes first, then let flake8 install
|
|
deps = pep8==1.4.5
|
|
pyflakes==0.7.2
|
|
flake8==2.0
|
|
hacking>=0.5.6,<0.8
|
|
commands =
|
|
flake8
|
|
flake8 --filename=ceilometer-* bin
|
|
|
|
[testenv:docs]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
sphinxcontrib-httpdomain
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:venv]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
sphinxcontrib-httpdomain
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
ignore = H301,H306,H506
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,./ceilometer/openstack/common,*lib/python*,*egg,tools,nova_tests,build
|
|
show-source = True
|