2013-08-08 10:34:06 -04:00
|
|
|
[tox]
|
|
|
|
envlist = py26,py27,pep8
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
NOSE_WITH_OPENSTACK=1
|
|
|
|
NOSE_OPENSTACK_COLOR=1
|
|
|
|
NOSE_OPENSTACK_RED=0.05
|
|
|
|
NOSE_OPENSTACK_YELLOW=0.025
|
|
|
|
NOSE_OPENSTACK_SHOW_ELAPSED=1
|
|
|
|
NOSE_OPENSTACK_STDOUT=1
|
|
|
|
LANG=en_US.UTF-8
|
|
|
|
LANGUAGE=en_US:en
|
|
|
|
LC_ALL=C
|
|
|
|
|
2013-09-30 10:48:26 -04:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2013-08-08 10:34:06 -04:00
|
|
|
commands =
|
|
|
|
nosetests {posargs}
|
|
|
|
|
|
|
|
[testenv:pep8]
|
|
|
|
commands =
|
|
|
|
flake8
|
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 =
|
|
|
|
bash tools/conf/generate_sample.sh -o etc/manila
|
|
|
|
|
2013-08-08 10:34:06 -04:00
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
|
|
|
[testenv:cover]
|
|
|
|
setenv = NOSE_WITH_COVERAGE=1
|
|
|
|
|
|
|
|
[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
|
|
|
# H236: Python 3.x incompatible __metaclass__, use six.add_metaclass()
|
|
|
|
# H237: module is removed in Python 3
|
|
|
|
# H305: imports not grouped correctly
|
|
|
|
# H307: like imports should be grouped together
|
|
|
|
# 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-05-27 09:45:10 +02:00
|
|
|
# H904: Wrap long lines in parentheses instead of a backslash
|
|
|
|
ignore = E12,E711,E712,H236,H237,H302,H303,H304,H305,H307,H402,H404,H405,H501,H904,F
|
2013-08-08 10:34:06 -04:00
|
|
|
builtins = _
|
|
|
|
exclude = .venv,.tox,dist,doc,openstack,*egg
|