-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
100 lines (88 loc) · 2.1 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
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
[tox]
minversion = 2.0
envlist =
cover,
docs,
pep8,
py27,
py37,
pylint,
update-states
[testenv]
setenv =
VIRTUAL_ENV={envdir}
BRANCH_NAME=master
CLIENT_NAME=zag
# We need to install a bit more than just `test' because those drivers have
# custom tests that we always run
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands =
stestr run {posargs}
[testenv:docs]
basepython = python3
deps =
{[testenv]deps}
-r{toxinidir}/doc/requirements.txt
commands =
sphinx-build -E -W -b html doc/source doc/build/html
doc8 doc/source
[testenv:update-states]
basepython = python3
deps =
{[testenv]deps}
pydot3
commands = {toxinidir}/tools/update_states.sh
[testenv:pep8]
basepython = python3
commands =
flake8 {posargs}
[testenv:pylint]
basepython = python3
deps =
{[testenv]deps}
pylint==2.1.0
commands = pylint --rcfile=pylintrc zag
[testenv:cover]
basepython = python3
deps =
{[testenv]deps}
coverage>=3.6
setenv =
{[testenv]setenv}
PYTHON=coverage run --source zag --parallel-mode
commands =
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
[testenv:venv]
basepython = python3
commands = {posargs}
[flake8]
builtins = _
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools,examples
ignore = E721,E731
[hacking]
import_exceptions =
six.moves
zag.test.mock
unittest.mock
[doc8]
# Settings for doc8:
# Ignore doc/source/user/history.rst, it includes generated ChangeLog
# file that fails with "D000 Inline emphasis start-string without
# end-string."
ignore-path = doc/*/target,doc/*/build*
[testenv:releasenotes]
basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]
basepython = python3
install_command = pip install {opts} {packages}
deps =
-c{toxinidir}/lower-constraints.txt
.[test,workers,zookeeper,database,redis,eventlet]