forked from openstack/networking-midonet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
66 lines (56 loc) · 1.99 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tox]
envlist = docs,py27,py34,pep8
minversion = 1.8
skipsdist = True
[testenv]
setenv = VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = ostestr --regex '{posargs}'
[tox:jenkins]
sitepackages = True
downloadcache = ~/cache/pip
[testenv:pep8]
commands =
flake8
neutron-db-manage --subproject networking-midonet check_migration
whitelist_externals = bash
[testenv:cover]
basepython = python2.7
commands =
python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}
[testenv:py34]
commands = python -m testtools.run \
{posargs:midonet.neutron.tests.unit.test_extension_agent_membership \
midonet.neutron.tests.unit.test_extension_lbaas}
# midonet.neutron.tests.unit.test_midonet_plugin
# midonet.neutron.tests.unit.test_midonet_plugin_v2
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:genconfig]
commands =
mkdir -p etc/midonet
oslo-config-generator --output-file etc/midonet/midonet.ini.v1.sample \
--namespace midonet_v1
oslo-config-generator --output-file etc/midonet/midonet.ini.v2.sample \
--namespace midonet_v2
whitelist_externals = mkdir
[flake8]
# E125 continuation line does not distinguish itself from next logical line
# E126 continuation line over-indented for hanging indent
# E128 continuation line under-indented for visual indent
# E129 visually indented line with same indent as next logical line
# E265 block comment should start with ‘# ‘
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
ignore = E125,E126,E128,E129,E265,H404,H405
show-source = true
builtins = _
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,.ropeproject,rally-scenarios
[hacking]
import_exceptions = neutron.openstack.common.gettextutils
local-check-factory = neutron.hacking.checks.factory