forked from osism/openstack-image-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (28 loc) · 638 Bytes
/
tox.ini
File metadata and controls
36 lines (28 loc) · 638 Bytes
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
[tox]
basepython = py3
skipsdist = true
envlist = manage
[testenv]
passenv = *
deps =
-rrequirements.txt
[testenv:manage]
commands =
python openstack_image_manager/manage.py {posargs}
[testenv:mirror]
commands =
python openstack_image_manager/mirror.py {posargs}
[testenv:table]
commands =
python openstack_image_manager/table.py {posargs}
[testenv:test]
commands =
python -m unittest discover {posargs}
[testenv:update]
commands =
python openstack_image_manager/update.py {posargs}
[testenv:docs]
deps =
-r{toxinidir}/doc/requirements.txt
commands =
sphinx-build -b html doc/source doc/build/html