-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
182 lines (153 loc) · 3.3 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[tox]
envlist = py3{7,8,9,10,11}-{linux,macos,windows}
skip_missing_interpreters = true
isolated_build = true
skipsdist = true
min_version = 4.3.3
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[gh-actions:env]
PLATFORM =
ubuntu-20.04: linux
macos-latest: macos
windows-latest: windows
[base]
deps =
pip>=22.1
build
[testenv]
skip_install = true
install_command = pip install {opts} {packages}
[testenv:{sync,do}]
envdir = {toxinidir}/.sync
# these 2 tox env cmds share the same env with the following plugin
# https://github.com/masenf/tox-ignore-env-name-mismatch
runner = ignore_env_name_mismatch
description =
do: Run cmd following "--" from the sync env, e.g. "tox -e do -- repolite --show"
sync: Install repolite and use it for cloning diagram workflow deps
passenv =
pythonLocation
PYTHON
DISPLAY
XAUTHORITY
HOME
USERNAME
USER
XDG_*
CI
GITHUB*
OS
LANG
LC_COLLATE
SSH_*
GID
UID
PYTHONIOENCODING
PIP_DOWNLOAD_CACHE
deps =
# logging_tree
{[base]deps}
repolite @ https://github.com/sarnold/repolite/releases/download/0.5.1/repolite-0.5.1-py3-none-any.whl
commands =
sync: repolite {posargs:--quiet}
do: {posargs:python -c 'print("No cmd provided")'}
[testenv:{graph,gen}]
envdir = {toxinidir}/.graph
# these 2 tox env cmds share the same env with the following plugin
# https://github.com/masenf/tox-ignore-env-name-mismatch
runner = ignore_env_name_mismatch
description =
# the graph cmd is only required to integrate new icons
graph: Build new content for the diagrams package (run sync first to install the source)
gen: Generate a new diagram from your python source file
passenv =
pythonLocation
PYTHON
DISPLAY
XAUTHORITY
HOME
USERNAME
USER
XDG_*
CI
GITHUB*
OS
LANG
LC_COLLATE
SSH_*
GID
UID
PYTHONIOENCODING
PIP_DOWNLOAD_CACHE
setenv =
gen: APPROOT = {env:APPROOT:{toxinidir}/resources}
allowlist_externals =
bash
# external (non-python) pkg requirements for diagrams
# round
# graphviz
# inkscape
# imagemagick/graphicsmagick
# ttf-opensans fontconfig xdg-utils
deps =
-r requirements-dia.txt
ext/diagrams
commands =
graph: bash ./autogen.sh
gen: python {env:APPROOT}/{posargs:acme_webservice.py}
gen: bash -c 'mv *.png svd/images'
[testenv:build]
skip_install = true
passenv =
pythonLocation
PYTHON
DISPLAY
XAUTHORITY
HOME
USERNAME
USER
XDG_*
CI
GITHUB*
OS
LANG
LC_COLLATE
SSH_*
GID
UID
PYTHONIOENCODING
PIP_DOWNLOAD_CACHE
allowlist_externals =
make
deps =
pip>=22.1
rst2pdf[svgsupport]
commands =
make
[testenv:changes]
skip_install = true
always_copy = False
description =
changes: Generate full or partial changelog; use git delta syntax for changes-since
allowlist_externals =
bash
deps =
pip>=20.0.1
gitchangelog @ https://github.com/sarnold/gitchangelog/releases/download/3.2.0/gitchangelog-3.2.0-py3-none-any.whl
commands =
bash -c 'gitchangelog {posargs} > CHANGELOG.rst'
[testenv:clean]
skip_install = true
allowlist_externals =
bash
deps =
pip>=21.1
commands =
bash -c 'make clean'
bash -c 'rm -rf build dist __pycache__/'