forked from ceph/teuthology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
71 lines (61 loc) · 1.85 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
[tox]
envlist = docs, py3, flake8, openstack
[testenv]
setenv =
LC_ALL=en_US.UTF-8
LANG=en_US
[testenv:py3]
basepython=python3
install_command = pip install --upgrade {opts} {packages}
passenv = HOME
deps=
-r{toxinidir}/requirements.txt
mock==2.0.0
fudge
pytest-cov==2.8.1
coverage==4.5.4
log_format = %(asctime)s %(levelname)s %(message)s
commands=
python -m pytest --cov=teuthology --cov-report=term -v {posargs:teuthology scripts}
[testenv:flake8]
basepython=python3
install_command = pip install --upgrade {opts} {packages}
deps=
flake8
commands=flake8 --select=F,E9 {posargs:teuthology scripts}
[testenv:docs]
basepython=python3
install_command = pip install --upgrade {opts} {packages}
changedir=docs
deps=
-r{toxinidir}/requirements.txt
sphinx
sphinxcontrib-programoutput
mock==2.0.0
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
sitepackages=True
deps=
-r{toxinidir}/requirements.txt
mock==2.0.0
commands=py.test -v {posargs:teuthology/openstack/test/test_openstack.py}
basepython=python3
[testenv:openstack-integration]
passenv = HOME OS_REGION_NAME OS_AUTH_URL OS_TENANT_ID OS_TENANT_NAME OS_PASSWORD OS_USERNAME
basepython=python3
deps=
-r{toxinidir}/requirements.txt
mock==2.0.0
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
basepython=python3
sitepackages=True
deps=
-r{toxinidir}/requirements.txt
commands={toxinidir}/openstack-delegate.sh