-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
45 lines (41 loc) · 1000 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
[flake8]
extend-ignore = E501 W503
per-file-ignores =
# Undefined name
./tests/dev-default.py: F821
./tests/dev-default.py: F821
./tests/dev-non-default.py: F821
./examples/settingsmanager/example.py: F821
./examples/settingsmanager/test.py: F821
exclude =
.git,
.venv,
.tox,
__pycache__,
build,
dist
# line length is intentionally set to 80 here because black uses Bugbear
# See https://github.com/psf/black/blob/master/docs/the_black_code_style.md#line-length for more details
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[pytest]
norecursedirs = .Ctl data gen .tox
[tox]
envlist = py{38,39,310,311,312}
isolated_build = True
[testenv]
whitelist_externals = poetry
extras = dev
deps =
poetry
commands =
poetry install -v
poetry run pytest -vs --cov={toxinidir}/src --cov-report=term-missing --cov-report=xml tests/