-
Notifications
You must be signed in to change notification settings - Fork 768
/
tox.ini
217 lines (177 loc) · 6.16 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
[tox]
skip_missing_interpreters = true
envlist =
flake8
sphinx
py39-{tw2403,twtrunk,asyncio}
py311-{tw2403,twtrunk,asyncio}
pypy39-{tw2403,twtrunk,asyncio}
# MAP: GitHub Actions Python Name => Tox Env Name (for Python)
#
# when called without a specific environment ("-e"), detect the
# python version / get from GH action, and map to tox env
#
# https://github.com/ymyzk/tox-gh-actions
#
[gh-actions]
python =
3.9: py9
3.11: py311
pypy-3.9: pypy39
[testenv]
deps =
pytest
; txaio
git+https://github.com/crossbario/txaio
; FIXME: https://github.com/ethereum/web3.py/issues/2704#issuecomment-1369041219
git+https://github.com/ethereum/web3.py.git
; UNTIL bitarray is released on pypi with pypy fixes
git+https://github.com/ilanschnell/bitarray.git@master#egg=bitarray
cytoolz
tw2403: twisted==24.3.0
# twtrunk: https://github.com/twisted/twisted/archive/trunk.zip
twtrunk: git+https://github.com/twisted/twisted
{tw2403,twtrunk}: pytest-twisted
; asyncio dependencies
asyncio: pytest_asyncio
extras =
encryption
serialization
scram
nvx
xbr
allowlist_externals =
sh
cp
mkdir
rm
ls
mv
curl
unzip
find
echo
file
du
xbrnetwork
chmod
ldd
which
passenv =
WEB3_INFURA_PROJECT_ID
WEB3_INFURA_API_SECRET
setenv =
# NaCl/Sodium: use and build bundled sources (don't use any system library)
SODIUM_INSTALL=bundled
# controls build of WAMP serializers:
PYUBJSON_NO_EXTENSION=1
# AUTOBAHN_USE_NVX=1
# AUTOBAHN_USE_UJSON=1
# controls test setup according to networking framework
asyncio: USE_ASYNCIO=1
asyncio: PYTHONPATH={toxinidir}
tw2403,twtrunk: USE_TWISTED=1
# this enables "autobahn/test/test_rng.py" (on Linux),
# which tests entropy depletion, and tests how to correctly
# read _real_ entropy and block if not enough _real_ entropy is currently avail
# also: https://github.com/crossbario/autobahn-python/issues/1275
# AUTOBAHN_CI_ENABLE_RNG_DEPLETION_TESTS = 1
commands =
# install package
# pip install -q -U pip
# sh -c "which python && which pip && python -V"
# pip install -q --no-cache --ignore-installed --force-reinstall .[twisted,asyncio,compress,serialization,encryption,scram,xbr]
# IMPORTANT: we need to exclude all twisted tests
asyncio: pytest -s -v -rfP --ignore=./autobahn/twisted ./autobahn
# IMPORTANT: trial doesn't allow to recurse-and-exclude, and hence we need this looong list (because we must exclude "asyncio")
tw2403: trial --no-recurse autobahn.test autobahn.twisted.test autobahn.websocket.test autobahn.rawsocket.test autobahn.wamp.test autobahn.xbr.test autobahn.nvx.test
twtrunk: python -m twisted.trial --no-recurse autobahn.test autobahn.twisted.test autobahn.websocket.test autobahn.rawsocket.test autobahn.wamp.test autobahn.xbr.test autobahn.nvx.test
[testenv:flake8]
skip_install = True
deps =
flake8<5
pep8-naming
exclude = autobahn/wamp/gen
max-line-length = 119
commands =
python -V
flake8 --version
flake8 -v --statistics \
--ignore=E402,E501,E722,E741,N801,N802,N803,N805,N806,N815,N818 \
--exclude "autobahn/wamp/message_fbs.py,autobahn/wamp/gen/*" \
autobahn
[testenv:sphinx]
description =
Generate docs using Sphinx.
skip_install = False
deps =
sphinx
sphinx_rtd_theme
sphinxcontrib.images
sphinx.autoapi
git+https://github.com/crossbario/txaio
git+https://github.com/erikrose/parsimonious.git
commands =
python -V
sphinx-build --version
pip install .[all]
pip install -U git+https://github.com/erikrose/parsimonious.git
python -c "from parsimonious.grammar import Grammar, TokenGrammar"
python -c "from eth_abi import abi"
python -c "from autobahn import xbr; print('HAS_XBR=' + str(xbr.HAS_XBR))"
python -c "from autobahn import xbr; assert(xbr.HAS_XBR)"
python -c "from autobahn.websocket.utf8validator import Utf8Validator"
# first test with all warnings fatal
find ./docs -name "*.rst"
# FIXME: readd "-W" .. I dont have time for this shit, fuck sphinx
# sphinx-build -T -b dummy ./docs ./docs/_build
# generate HTML output
sphinx-build -b html ./docs ./docs/_build
[testenv:buildexe]
description =
Build one-file executable using PyInstaller.
skip_install = True
passenv =
AUTOBAHN_BUILD_DATE
AUTOBAHN_BUILD_ID
AUTOBAHN_VCS_REF
AUTOBAHN_VERSION
XBRNETWORK_EXE_FILENAME
deps =
pip
pyinstaller==4.8
commands =
echo "Building with AUTOBAHN_BUILD_DATE={env:AUTOBAHN_BUILD_DATE}"
echo "Building with AUTOBAHN_BUILD_ID={env:AUTOBAHN_BUILD_ID}"
echo "Building with AUTOBAHN_VCS_REF={env:AUTOBAHN_VCS_REF}"
echo "Building with AUTOBAHN_VERSION={env:AUTOBAHN_VERSION}"
echo "Building with XBRNETWORK_EXE_FILENAME={env:XBRNETWORK_EXE_FILENAME}"
# Install pip v19.3.1 (yes, absolutely, we do not want the "new resolver" shit)
# curl -sSL -o get-pip.py https://bootstrap.pypa.io/get-pip.py
# python get-pip.py # fails with https://github.com/pypa/setuptools/issues/3044
# python get-pip.py "pip<20"
pip show pip
# Install development dependencies
pip install -r{toxinidir}/requirements-dev.txt
# inject build ID into source code: modifies autobahn/_version.py!
echo "Building with AUTOBAHN_BUILD_ID={env:AUTOBAHN_BUILD_ID}"
python inject-build-id.py
# Install the package itself
pip install .[all]
# print effective version/build
python -c "from autobahn._version import __version__, __build__; print('autobahn==', __version__, __build__)"
# run CLI and print versions
xbrnetwork version
# bundle up dist/xbrnetwork
which pyinstaller
pyinstaller --version
pyinstaller --additional-hooks-dir={toxinidir}/pyinstaller \
--specpath={toxinidir}/pyinstaller --onefile --clean \
--name xbrnetwork {toxinidir}/autobahn/xbr/_cli.py
chmod +x {toxinidir}/dist/xbrnetwork
cp {toxinidir}/dist/xbrnetwork {homedir}/xbrnetwork
# base check of the produced executable
file {homedir}/xbrnetwork
ldd {homedir}/xbrnetwork
du -h {homedir}/xbrnetwork
{homedir}/xbrnetwork version