-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (70 loc) · 1.11 KB
/
setup.cfg
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
[tool:pytest]
minversion = 3
addopts = --junitxml=test-results/pytest/results.xml --cov-report=xml --cov-report=term-missing --cov-config=setup.cfg --cov=.
norecursedirs =
*settings*
*urls*
.tox*
*docs*
[coverage:run]
source = .
branch = True
omit =
.venv/*
examples/*
*settings*
*__init__.py
*__main__.py
*urls*
.tox*
*tests*
*/migrations/*
*/features/*
*manage.py
*wsgi.py
*celery.py
*apps.py
run*
build.py
[coverage:report]
show_missing = True
ignore_errors = True
fail_under = 90
exclude_lines =
noqa
pragma: no cover
pass
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
def __repr__
def __str__
if cls\.debug
if settings\.DEBUG
if (typing\.)?TYPE_CHECKING:
[coverage:paths]
source = ./
[coverage:html]
directory = test-results/coverage_html/
[coverage:xml]
output = test-results/coverage.xml
[isort]
atomic = true
multi_line_output = 3
include_trailing_comma = True
line_length = 120
skip_glob =
*/.tox/**
*/doc/**
*/build/**
*/dist/**
[flake8]
max-line-length = 120
ignore = N804,W503
exclude =
doc/*,
build/*,
dist/*,
.tox/*
max-complexity = 10