-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
45 lines (34 loc) · 687 Bytes
/
Copy pathtox.ini
File metadata and controls
45 lines (34 loc) · 687 Bytes
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
[tox]
envlist = py,flake8,pylint,isort,black,mypy
skipsdist = true
[testenv]
deps = pytest-cov
commands =
coverage run --branch -m pytest
coverage report --fail-under 100
coverage xml
[testenv:flake8]
deps = flake8
commands = flake8 sorts
[testenv:pylint]
deps = pylint
commands = pylint sorts --rcfile=tox.ini
[testenv:isort]
deps = isort
commands = isort --check sorts tests
[testenv:black]
deps = black
commands = black --check sorts tests
[testenv:mypy]
deps = mypy
commands = mypy sorts tests
# lint configs
[flake8]
extend-ignore = E203
max-complexity = 10
max-line-length = 88
[pylint]
disable = C0330, C0326, R0801
max-line-length = 88
[mypy]
strict = True