2013-08-08 10:34:06 -04:00
|
|
|
[tox]
|
2014-07-16 13:23:05 +03:00
|
|
|
minversion = 1.6
|
|
|
|
skipsdist = True
|
2013-08-08 10:34:06 -04:00
|
|
|
envlist = py26,py27,pep8
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
2014-07-16 13:23:05 +03:00
|
|
|
usedevelop = True
|
|
|
|
install_command = pip install {opts} {packages}
|
2013-09-30 10:48:26 -04:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2014-07-16 13:23:05 +03:00
|
|
|
commands = python setup.py testr --testr-args='{posargs}'
|
|
|
|
|
|
|
|
[tox:jenkins]
|
|
|
|
downloadcache = ~/cache/pip
|
2013-08-08 10:34:06 -04:00
|
|
|
|
|
|
|
[testenv:pep8]
|
|
|
|
commands =
|
2014-07-16 13:23:05 +03:00
|
|
|
flake8 {posargs} . manila/common
|
2013-09-17 10:57:47 +03:00
|
|
|
flake8 --filename=manila* bin
|
2013-08-08 10:34:06 -04:00
|
|
|
|
2014-04-29 14:11:52 +03:00
|
|
|
[testenv:genconfig]
|
|
|
|
commands =
|
2014-08-12 15:32:33 +02:00
|
|
|
bash tools/config/generate_sample.sh -o etc/manila
|
2014-04-29 14:11:52 +03:00
|
|
|
|
2013-08-08 10:34:06 -04:00
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
|
|
|
[testenv:cover]
|
2014-07-16 13:23:05 +03:00
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
commands =
|
|
|
|
python setup.py testr --coverage \
|
|
|
|
--testr-args='^(?!.*test.*coverage).*$'
|
2013-08-08 10:34:06 -04:00
|
|
|
|
|
|
|
[testenv:pylint]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
2013-09-30 10:48:26 -04:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
2013-08-08 10:34:06 -04:00
|
|
|
pylint==0.26.0
|
|
|
|
commands = bash tools/lintstack.sh
|
|
|
|
|
|
|
|
[flake8]
|
2014-05-23 00:36:45 +02:00
|
|
|
# TODO: These are not intentionally disabled, reenable when fixed:
|
2014-05-27 09:45:10 +02:00
|
|
|
# H405: multi line docstring summary not separated with an empty line
|
2014-05-23 00:36:45 +02:00
|
|
|
# H501: Do not use locals() for string formatting
|
2014-08-14 10:34:28 +02:00
|
|
|
ignore = E12,H302,H303,H404,H405,H501,H904,F401,F403,F841
|
2013-08-08 10:34:06 -04:00
|
|
|
builtins = _
|
|
|
|
exclude = .venv,.tox,dist,doc,openstack,*egg
|