-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
79 lines (71 loc) · 1.33 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
[tox]
requires =
tox>=4
env_list = format, type, flake8, py
[testenv]
description = run tests with coverage report
usedevelop=True
deps =
pytest
pytest-sugar
coverage>=6
commands =
coverage run -m pytest {posargs}
# ensure 100% coverage of tests
coverage report --fail-under 100
[testenv:test]
description = run tests without coverage report (but in parallel)
usedevelop=True
deps =
pytest
pytest-sugar
pytest-xdist
commands =
pytest -n 4 {posargs}
[testenv:format]
description = run code formatter
skip_install = true
deps =
isort
black
commands =
isort {posargs:src tests}
black {posargs:src tests}
[testenv:flake8]
description = run flake8
usedevelop=True
skip_install = true
deps =
flake8
flake8-bugbear
flake8-builtins
flake8-walrus
flake8-type-checking
flake8-docstrings>=1.3.1
pep8-naming
commands =
flake8 {posargs:src tests}
[testenv:pylint]
description = run pyling
usedevelop=True
skip_install = true
deps =
pylint
commands =
pylint {posargs:src tests}
[testenv:type]
description = run type checks
deps =
mypy
commands =
mypy --strict --pretty {posargs:src}
[pytest]
norecursedirs = .git .* *.egg* docs dist build
addopts = -rw
filterwarnings = error
[flake8]
per-file-ignores =
tests/*: D
max-complexity = 10
ignore =
E203 W503