-
Notifications
You must be signed in to change notification settings - Fork 18
/
tox.ini
63 lines (54 loc) · 1.61 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
[tox]
minversion = 1.6
envlist = linters,publishdocs
skipsdist = True
[testenv]
basepython = python3
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
allowlist_externals =
bash
cp
mkdir
rm
sed
[testenv:venv]
commands = {posargs}
[testenv:linters]
commands =
doc8 -e '' security-notes
doc8 -e '' security-guide
doc8 -e '' security-threat-analysis
[testenv:publishdocs]
allowlist_externals = {toxinidir}/tools/build-all-rst.sh
# Prepare all documents so that they can get published on
# docs.openstack.org with just copying publish-docs/* over.
commands =
# Build and copy RST Guides
{toxinidir}/tools/build-all-rst.sh
[testenv:buildlang]
# Run as "tox -e buildlang -- $LANG"
allowlist_externals =
doc-tools-check-languages
bash
commands =
doc-tools-check-languages doc-tools-check-languages.conf test {posargs}
[testenv:publishlang]
allowlist_externals = doc-tools-check-languages
commands = doc-tools-check-languages doc-tools-check-languages.conf test all
[testenv:docs]
allowlist_externals = {toxinidir}/tools/build-all-rst.sh
commands =
# Build and copy RST Guides
{toxinidir}/tools/build-all-rst.sh
[testenv:generatepot-rst]
# Generate POT files for translation, needs {posargs} like:
# tox -e generatepot-rst -- security-guide
commands = {toxinidir}/tools/generatepot-rst.sh {posargs}
[doc8]
# Settings for doc8:
# These files have extra long lines that cannot be avoided, let's ignore them.
ignore-path = security-notes/OSSN-0047,security-notes/OSSN-0068,common,security-guide/build,security-threat-analysis/build
# File extensions to use
extensions = .rst,.txt