-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathtox.ini
79 lines (71 loc) · 1.97 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
[tox]
envlist = docs,linters
minversion = 3.18.0
ignore_basepython_conflict = True
[testenv]
usedevelop = True
basepython = python3
setenv =
VIRTUAL_ENV={envdir}
PYTHON=coverage run --source openstack_governance --parallel-mode
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_DEBUG=1
OS_LOG_CAPTURE=1
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
stestr run '{posargs}'
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
coverage report --show-missing
[testenv:linters]
basepython = python3
allowlist_externals =
bash
{toxinidir}/tools/check_projects_yaml_alphabetized.sh
{toxinidir}/tools/validate_repositories.py
commands =
osg-check-schema
bash -c "find {toxinidir} \
\( -name .tox -prune \) \
-o -type f -name '*.yaml' \
-print0 | xargs -0 yamllint"
{toxinidir}/tools/check_projects_yaml_alphabetized.sh
flake8
whereto {toxinidir}/doc/source/_extra/.htaccess {toxinidir}/doc/test/redirect-tests.txt
{toxinidir}/tools/validate_repositories.py
[testenv:validate-legacy]
envdir = {toxworkdir}/linters
allowlist_externals =
{toxinidir}/tools/validate-legacy.py
commands =
{toxinidir}/tools/validate-legacy.py
[testenv:validate_acs]
allowlist_externals =
{toxinidir}/tools/validate_acs.py
commands = {toxinidir}/tools/validate_acs.py
[testenv:pep8]
commands =
flake8
[testenv:venv]
commands = {posargs}
[testenv:docs]
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt
allowlist_externals =
find
rm
commands =
rm -Rf doc/build
find reference/projects -name '*.rst' -a '!' -name index.rst -delete
sphinx-build -W -b html doc/source doc/build/html
[testenv:check-review-status]
deps =
requests
prettytable
allowlist_externals =
{toxinidir}/tools/check_review_status.py
commands = {toxinidir}/tools/check_review_status.py