aboutsummaryrefslogtreecommitdiffstats
path: root/keystone-moon/tox.ini
blob: 366a6829b8469813139abbd0068e029c2c15feff (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[tox]
minversion = 1.6
skipsdist = True
envlist = py27,py33,py34,pep8,docs,sample_config

[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
       -r{toxinidir}/test-requirements.txt
commands = bash tools/pretty_tox.sh '{posargs}'
whitelist_externals = bash

[testenv:py33]
deps = -r{toxinidir}/requirements-py3.txt
       -r{toxinidir}/test-requirements-py3.txt
       nose
commands =
  nosetests --with-coverage --cover-package=keystone \
      --exclude test_ldap \
      keystone/tests/test_auth_plugin.py \
      keystone/tests/test_backend.py \
      keystone/tests/test_backend_rules.py \
      keystone/tests/test_cache_backend_mongo.py \
      keystone/tests/test_driver_hints.py \
      keystone/tests/test_hacking_checks.py \
      keystone/tests/test_injection.py \
      keystone/tests/test_matchers.py \
      keystone/tests/test_policy.py \
      keystone/tests/test_singular_plural.py \
      keystone/tests/test_sizelimit.py \
      keystone/tests/test_sql_migrate_extensions.py \
      keystone/tests/test_token_bind.py \
      keystone/tests/test_url_middleware.py \
      keystone/tests/unit/common/test_utils.py \
      keystone/tests/test_validation.py \
      keystone/tests/test_v3_controller.py \
      keystone/tests/test_wsgi.py \
      keystone/tests/unit

[testenv:py34]
deps = -r{toxinidir}/requirements-py3.txt
       -r{toxinidir}/test-requirements-py3.txt
       nose
commands =
  nosetests --with-coverage --cover-package=keystone \
      --exclude test_ldap \
      keystone/tests/test_auth_plugin.py \
      keystone/tests/test_backend.py \
      keystone/tests/test_backend_rules.py \
      keystone/tests/test_cache_backend_mongo.py \
      keystone/tests/test_driver_hints.py \
      keystone/tests/test_hacking_checks.py \
      keystone/tests/test_injection.py \
      keystone/tests/test_matchers.py \
      keystone/tests/test_policy.py \
      keystone/tests/test_singular_plural.py \
      keystone/tests/test_sizelimit.py \
      keystone/tests/test_sql_migrate_extensions.py \
      keystone/tests/test_token_bind.py \
      keystone/tests/test_url_middleware.py \
      keystone/tests/unit/common/test_utils.py \
      keystone/tests/test_validation.py \
      keystone/tests/test_v3_controller.py \
      keystone/tests/test_wsgi.py \
      keystone/tests/unit

[testenv:pep8]
commands =
  flake8 {posargs}
  # Run bash8 during pep8 runs to ensure violations are caught by
  # the check and gate queues
  bashate run_tests.sh examples/pki/gen_pki.sh
  # Check that .po and .pot files are valid.
  bash -c "find keystone -type f -regex '.*\.pot?' -print0| \
           xargs -0 -n 1 msgfmt --check-format -o /dev/null"

[tox:jenkins]
downloadcache = ~/cache/pip

[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'

[testenv:venv]
commands = {posargs}

[testenv:debug]
commands = oslo_debug_helper {posargs}

[flake8]
filename= *.py,keystone-all,keystone-manage
show-source = true

# H405  multi line docstring summary not separated with an empty line
ignore = H405

exclude=.venv,.git,.tox,build,dist,doc,*openstack/common*,*lib/python*,*egg,tools,vendor,.update-venv,*.ini,*.po,*.pot
max-complexity=24

[testenv:docs]
commands=
    python setup.py build_sphinx

[testenv:sample_config]
commands = oslo-config-generator --config-file=config-generator/keystone.conf

[hacking]
import_exceptions =
  keystone.i18n
local-check-factory = keystone.hacking.checks.factory