-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
51 lines (46 loc) · 923 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Generated from:
# https://github.com/plone/meta/tree/master/config/default
# See the inline comments on how to expand/tweak this configuration file
[tox]
# We need 4.4.0 for constrain_package_deps.
min_version = 4.4.0
envlist =
py310
py311
py312
py313
test
lint
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
use_develop = true
skip_install = false
deps =
-e tests/data/test_wallet_apple_plugins
commands =
pytest {posargs}
extras =
test
[testenv:format]
description = automatically reformats code
skip_install = true
deps =
pre-commit
commands =
pre-commit run -a pyupgrade
pre-commit run -a isort
pre-commit run -a black
[testenv:lint]
description = run linters that will help improve the code style
skip_install = true
extras =
test,typecheck,callbacks
deps =
pre-commit
commands =
pre-commit run -a