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:
|
|
|
|
# H233: Python 3.x incompatible print operator
|
|
|
|
# H501: Do not use locals() for string formatting
|
|
|
|
ignore = E12,E711,E712,H233,H302,H303,H304,H401,H402,H403,H404,H501,F
|
2013-08-08 10:34:06 -04:00
|
|
|
builtins = _
|
|
|
|
exclude = .venv,.tox,dist,doc,openstack,*egg
|