forked from valory-xyz/open-autonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
541 lines (472 loc) · 14.6 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
; By default, testenvs are configured to:
; - don't skip dist (skipsdist = False)
; - don't skip the package installation (skip_install = False)
; - don't use source installation (usedevelop = False)
; where one of those steps is not necessary for the test,
; we set the associated flag (e.g. for linting we don't need
; the package installation).
[tox]
envlist = bandit, safety, black, black-check, isort, isort-check, check-copyright, check-hash, check-packages, check-pipfiles, check-api-docs, docs, check-doc-links-hashes, flake8, mypy, pylint, darglint, vulture, check-generate-all-protocols, generate-all-protocols, check-abciapp-specs, check-abci-docstrings, check-handlers, py{3.7,3.8,3.9,3.10}-{win,linux,darwin}
; when running locally we don't want to fail for no good reason
skip_missing_interpreters = true
[deps-framework]
deps =
docker==6.0.0
docker-compose==1.29.2
Flask==2.0.2
open-aea[all]==1.32.0
open-aea-cli-ipfs==1.32.0
open-aea-ledger-ethereum==1.32.0
open-aea-ledger-ethereum-hwi==1.32.0
Werkzeug==2.0.3
[deps-tests]
deps =
{[deps-framework]deps}
tomte[tests]==0.2.4
[deps-packages]
deps =
{[deps-tests]deps}
aiohttp==3.7.4.post0
asn1crypto==1.4.0
cosmpy==0.3.1
grpcio==1.43.0
hypothesis==6.21.6
numpy==1.21.6
open-aea-ledger-cosmos==1.32.0
pandas==1.3.5
pandas-stubs==1.2.0.62
protobuf>=3.20,<=3.20.1
pytz==2022.2.1
py-ecc==5.2.0
py-eth-sig-utils==0.4.0
typing_extensions==3.10.0.2
[deps-base]
deps ={[deps-packages]deps}
[testenv-multi-ubuntu]
deps =
{[deps-base]deps}
[testenv-multi-win]
deps =
{[deps-base]deps}
pywin32==304
websocket-client==0.59.0
certifi==2021.10.8
idna==3.3
[testenv-multi-darwin]
deps = {[deps-base]deps}
[testenv]
basepython = python3
whitelist_externals = /bin/sh
deps =
{[deps-base]deps}
passenv = *
extras = all
setenv =
PYTHONHASHSEED=0
PYTHONPATH={env:PWD:%CD%}
AUTONOMY_IMAGE_VERSION=latest
[commands-framework]
commands =
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
pytest -rfE --doctest-modules autonomy tests/ --cov=autonomy --cov-report=html --cov-report=xml --cov-report=term --cov-report=term-missing --cov-config=.coveragerc {posargs}
[commands-packages]
commands =
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
aea test --cov --append packages -p no:hypothesispytest {posargs}
[commands-packages-cov]
commands =
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
aea test --cov --append by-path packages/valory/connections/abci
aea test --cov --append by-path packages/valory/contracts/gnosis_safe
aea test --cov --append by-path packages/valory/contracts/gnosis_safe_proxy_factory
aea test --cov --append by-path packages/valory/contracts/multisend
aea test --cov --append by-path packages/valory/contracts/service_registry
aea test --cov --append by-path packages/valory/contracts/component_registry
aea test --cov --append by-path packages/valory/contracts/agent_registry
aea test --cov --append by-path packages/valory/protocols/abci
aea test --cov --append by-path packages/valory/protocols/tendermint
aea test --cov --append by-path packages/valory/skills/abstract_abci
aea test --cov --append by-path packages/valory/skills/abstract_round_abci
aea test --cov --append by-path packages/valory/skills/counter
aea test --cov --append by-path packages/valory/skills/counter_client
aea test --cov --append by-path packages/valory/skills/hello_world_abci
aea test --cov --append by-path packages/valory/skills/register_reset_abci
aea test --cov --append by-path packages/valory/skills/register_reset_recovery_abci
aea test --cov --append by-path packages/valory/skills/register_termination_abci
aea test --cov --append by-path packages/valory/skills/registration_abci
aea test --cov --append by-path packages/valory/skills/reset_pause_abci
aea test --cov --append by-path packages/valory/skills/termination_abci
aea test --cov --append by-path packages/valory/skills/test_abci
aea test --cov --append by-path packages/valory/skills/transaction_settlement_abci
[testenv:py3.7-linux]
basepython = python3.7
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.7-linux]
basepython = python3.7
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-packages]commands}
[testenv:py3.8-linux]
basepython = python3.8
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.8-linux]
basepython = python3.8
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-packages]commands}
[testenv:py3.9-linux]
basepython = python3.9
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.9-linux]
basepython = python3.9
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-packages]commands}
[testenv:py3.10.9-linux]
basepython = python3.10
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.10.9-linux]
basepython = python3.10
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-packages-cov]commands}
[testenv:e2e-py3.10.9-linux]
basepython = python3.10
platform=^linux$
deps = {[testenv-multi-ubuntu]deps}
commands = {[commands-packages]commands}
[testenv:py3.7-win]
basepython = python3.7
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.7-win]
basepython = python3.7
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-packages]commands}
[testenv:py3.8-win]
basepython = python3.8
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.8-win]
basepython = python3.8
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-packages]commands}
[testenv:py3.9-win]
basepython = python3.9
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.9-win]
basepython = python3.9
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-packages]commands}
[testenv:py3.10.9-win]
basepython = python3.10
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.10.9-win]
basepython = python3.10
platform=^win32$
deps = {[testenv-multi-win]deps}
commands = {[commands-packages]commands}
[testenv:py3.7-darwin]
basepython = python3.7
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.7-darwin]
basepython = python3.7
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-packages]commands}
[testenv:py3.8-darwin]
basepython = python3.8
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.8-darwin]
basepython = python3.8
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-packages]commands}
[testenv:py3.9-darwin]
basepython = python3.9
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.9-darwin]
basepython = python3.9
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-packages]commands}
[testenv:py3.10.9-darwin]
basepython = python3.10
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-framework]commands}
[testenv:packages-py3.10.9-darwin]
basepython = python3.10
platform=^darwin$
deps = {[testenv-multi-darwin]deps}
commands = {[commands-packages]commands}
[testenv:bandit]
skipsdist = True
skip_install = True
deps =
tomte[bandit]==0.2.4
commands =
bandit -r autonomy plugins -x */tests/*
bandit -s B101 -r packages/valory
bandit -s B101 -r tests scripts
[testenv:black]
skipsdist = True
skip_install = True
deps =
tomte[black]==0.2.4
commands =
black autonomy packages/valory scripts tests deployments plugins
[testenv:black-check]
skipsdist = True
skip_install = True
deps =
tomte[black]==0.2.4
commands =
black --check autonomy packages/valory scripts tests deployments plugins
[testenv:isort]
skipsdist = True
skip_install = True
deps =
tomte[isort]==0.2.4
commands =
isort autonomy/
isort packages/valory --gitignore
isort scripts/
isort tests/
isort deployments/
isort plugins/
[testenv:isort-check]
skipsdist = True
skip_install = True
deps =
tomte[isort]==0.2.4
commands =
isort --check-only --gitignore autonomy packages/valory scripts tests plugins
[testenv:check-copyright]
skipsdist = True
skip_install = True
deps =
commands =
{toxinidir}/scripts/check_copyright.py --check
[testenv:fix-copyright]
skipsdist = True
skip_install = True
deps =
commands =
{toxinidir}/scripts/check_copyright.py
[testenv:check-hash]
skipsdist = True
usedevelop = True
deps =
{[deps-packages]deps}
commands =
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
autonomy packages lock --check
[testenv:check-packages]
usedevelop = True
deps =
{[deps-packages]deps}
commands =
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
autonomy check-packages
[testenv:lock-packages]
usedevelop = True
deps =
{[deps-packages]deps}
commands =
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
autonomy hash all
autonomy packages lock
[testenv:check-pipfiles]
skipsdist = True
usedevelop = True
deps =
commands =
{toxinidir}/scripts/check_pipfiles.py
[testenv:check-api-docs]
skipsdist = True
skip_install = True
deps =
{[deps-packages]deps}
tomte[docs]==0.2.4
commands =
{toxinidir}/scripts/generate_api_documentation.py --check-clean
[testenv:generate-api-documentation]
skipsdist = True
skip_install = True
deps =
{[deps-packages]deps}
tomte[docs]==0.2.4
commands =
{toxinidir}/scripts/generate_api_documentation.py
[testenv:check-doc-links-hashes]
skipsdist = True
skip_install = True
commands =
aea init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
aea packages sync
{toxinidir}/scripts/check_doc_links.py
{toxinidir}/scripts/check_doc_ipfs_hashes.py
{toxinidir}/scripts/check_ipfs_hashes_pushed.py
[testenv:fix-doc-hashes]
skipsdist = True
skip_install = True
commands =
{toxinidir}/scripts/generate_package_list.py
{toxinidir}/scripts/check_doc_ipfs_hashes.py --fix
[testenv:docs]
skipsdist = True
skip_install = True
deps =
tomte[docs]==0.2.4
mkdocs-redirects
commands =
mkdocs build --clean --strict
[testenv:docs-serve]
skipsdist = True
skip_install = True
deps =
tomte[docs]==0.2.4
mkdocs-redirects
commands =
mkdocs build --clean --strict
python -c 'print("###### Starting local server. Press Control+C to stop server ######")'
mkdocs serve -a localhost:8080
[testenv:flake8]
skipsdist = True
skip_install = True
deps =
tomte[flake8]==0.2.4
commands =
flake8 autonomy packages/valory scripts tests deployments plugins
[testenv:mypy]
skipsdist = True
skip_install = True
deps =
tomte[mypy]==0.2.4
commands =
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
mypy autonomy packages/valory plugins/aea-test-autonomy/aea_test_autonomy tests scripts --disallow-untyped-defs
mypy plugins/aea-test-autonomy/tests --disallow-untyped-defs
[testenv:pylint]
whitelist_externals = /bin/sh
skipsdist = True
deps =
{[deps-packages]deps}
tomte[pylint]==0.2.4
commands =
python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy
pylint --rcfile=setup.cfg autonomy packages/valory scripts deployments plugins -j 0
# -j0 to utilize all cpu cores
[testenv:safety]
skipsdist = True
skip_install = True
deps =
tomte[safety]==0.2.4
commands =
safety check -i 37524 -i 38038 -i 37776 -i 38039 -i 39621 -i 40291 -i 39706 -i 41002 -i 51358 -i 51499
[testenv:vulture]
skipsdist = True
skip_install = True
deps =
tomte[vulture]==0.2.4
commands =
vulture autonomy scripts/whitelist.py
[testenv:darglint]
skipsdist = True
skip_install = True
deps =
tomte[darglint]==0.2.4
commands =
darglint autonomy scripts packages/valory/* tests deployments plugins
[testenv:check-generate-all-protocols]
skipsdist = True
usedevelop = True
deps =
{[deps-packages]deps}
tomte[isort]==0.2.4
tomte[black]==0.2.4
commands =
aea generate-all-protocols --check-clean
[testenv:generate-all-protocols]
skipsdist = True
usedevelop = True
deps =
{[deps-packages]deps}
tomte[isort]==0.2.4
tomte[black]==0.2.4
commands =
aea generate-all-protocols
[testenv:spell-check]
whitelist_externals = mdspell
skipsdist = True
usedevelop = True
deps =
commands =
{toxinidir}/scripts/spell-check.sh
[testenv:abci-docstrings]
skipsdist = True
usedevelop = True
commands =
autonomy analyse docstrings --update
[testenv:check-abci-docstrings]
skipsdist = True
usedevelop = True
commands =
autonomy analyse docstrings
[testenv:check-abciapp-specs]
skipsdist = True
usedevelop = True
commands =
autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
autonomy packages sync
autonomy analyse fsm-specs
[testenv:check-handlers]
skipsdist = True
usedevelop = True
commands =
autonomy analyse handlers -h abci -h http -h contract_api -h ledger_api -h signing -i abstract_abci -i counter -i counter_client -i hello_world_abci
[testenv:check-dialogues]
skipsdist = True
usedevelop = True
commands =
autonomy analyse dialogues -d abci -d http -d contract_api -d ledger_api -d signing -i abstract_abci -i counter -i counter_client -i hello_world_abci
[testenv:liccheck]
skipsdist = True
usedevelop = True
deps =
tomte[liccheck]==0.2.4
commands = {toxinidir}/scripts/freeze_dependencies.py -o {envtmpdir}/requirements.txt
liccheck -s liccheck.ini -r {envtmpdir}/requirements.txt -l PARANOID