-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
31 lines (26 loc) · 922 Bytes
/
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
[tox]
minversion = 2.0
envlist = checkbuild
skipsdist = True
[testenv]
usedevelop = True
setenv = VIRTUAL_ENV={envdir}
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
[testenv:venv]
commands = {posargs}
[testenv:gettext]
commands=
sphinx-build -b gettext doc/myguide/source/ doc/myguide/source/locale/
[testenv:docs]
commands=
sphinx-build -b html doc/myguide/source/ doc/myguide/build/html/en
sphinx-build -b html doc/myguide/source/ doc/myguide/build/html/de -D language='de'
sphinx-build -b html doc/myguide/source/ doc/myguide/build/html/ko -D language='ko'
deps=sphinx
[testenv:slides]
commands=
sphinx-build -b slides doc/myguide/source/ doc/myguide/build/slides/en
sphinx-build -b slides doc/myguide/source/ doc/myguide/build/slides/de -D language='de'
sphinx-build -b slides doc/myguide/source/ doc/myguide/build/slides/ko -D language='ko'
deps=sphinx