![Flavio Percoco](/assets/img/avatar_default.png)
flake8 has support for cyclomatic complexity (Mccabe) currently our worst offender has a complexity of 15 (25 is considered very bad). So set our max-complexity to 16 so we at least don't make things any worse. https://github.com/flintwork/mccabe Change-Id: Ied156f42aaee351f0023ea7dc38bb307ccdbf098
67 lines
1.7 KiB
INI
67 lines
1.7 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py26,py27,py33,py34,pypy,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
# Customize pip command, add -U to force updates.
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
ZAQAR_TESTS_DIR={toxinidir}/tests
|
|
ZAQAR_TESTS_CONFIGS_DIR={toxinidir}/tests/etc/
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --slowest --testr-args='--concurrency 1 {posargs}'
|
|
|
|
[testenv:py27]
|
|
setenv = ZAQAR_TEST_MONGODB=1
|
|
ZAQAR_TEST_SLOW=1
|
|
|
|
[testenv:py33]
|
|
deps = -r{toxinidir}/requirements-py3.txt
|
|
-r{toxinidir}/test-requirements-py3.txt
|
|
|
|
[testenv:py34]
|
|
deps = -r{toxinidir}/requirements-py3.txt
|
|
-r{toxinidir}/test-requirements-py3.txt
|
|
|
|
[testenv:pypy]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
ZAQAR_TESTS_DIR={toxinidir}/tests
|
|
ZAQAR_TESTS_CONFIGS_DIR={toxinidir}/tests/etc/
|
|
JIT_FLAG=--jit off
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:genconfig]
|
|
commands =
|
|
bash tools/config/generate_sample.sh -b . -p zaqar -o etc
|
|
whitelist_externals = bash
|
|
|
|
[testenv:cover]
|
|
commands =
|
|
python setup.py testr --coverage \
|
|
--testr-args='^(?!.*test.*coverage).*$'
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
exclude = .venv*,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*.egg,.update-venv
|
|
# NOTE(flaper87): Our currently max-complexity is 15. Not sure what the ideal complexity
|
|
# for Zaqar should be but lets keep it to the minimum possible.
|
|
max-complexity = 16
|
|
|
|
[hacking]
|
|
import_exceptions = zaqar.openstack.common.gettextutils._,zaqar.i18n._
|
|
|