forked from ceph/teuthology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
82 lines (75 loc) · 1.77 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
[tox]
envlist = docs, py3, flake8
isolated_build = True
[testenv]
setenv =
LC_ALL=en_US.UTF-8
LANG=en_US
[testenv:py3]
install_command = pip install --upgrade {opts} {packages}
passenv = HOME
deps=
-r{toxinidir}/requirements.txt
pytest-cov
coverage
mock
extras = test
log_format = %(asctime)s %(levelname)s %(message)s
commands=
python -m pytest --cov=teuthology --cov-report=term -v {posargs:teuthology scripts}
[testenv:flake8]
install_command = pip install --upgrade {opts} {packages}
deps=
flake8
commands=flake8 --select=F,E9 {posargs:teuthology scripts}
[testenv:docs]
install_command = pip install --upgrade {opts} {packages}
changedir=docs
deps=
-r{toxinidir}/requirements.txt
sphinx != 7.2.0, != 7.2.1, != 7.2.2
sphinxcontrib-programoutput
commands=
sphinx-apidoc -f -o . ../teuthology ../teuthology/test ../teuthology/orchestra/test ../teuthology/task/test
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:openstack]
install_command = pip install --upgrade {opts} {packages}
passenv =
HOME
OS_REGION_NAME
OS_AUTH_URL
OS_TENANT_ID
OS_TENANT_NAME
OS_PASSWORD
OS_USERNAME
deps=
-r{toxinidir}/requirements.txt
extras = test
commands=py.test -v {posargs:teuthology/openstack/test/test_openstack.py}
[testenv:openstack-integration]
passenv =
HOME
OS_REGION_NAME
OS_AUTH_URL
OS_TENANT_ID
OS_TENANT_NAME
OS_PASSWORD
OS_USERNAME
deps=
-r{toxinidir}/requirements.txt
extras = test
commands=
py.test -v {posargs} teuthology/openstack/test/openstack-integration.py
[testenv:openstack-delegate]
passenv =
HOME
OS_REGION_NAME
OS_AUTH_URL
OS_TENANT_ID
OS_TENANT_NAME
OS_PASSWORD
OS_USERNAME
sitepackages=True
deps=
-r{toxinidir}/requirements.txt
commands={toxinidir}/openstack-delegate.sh