-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (51 loc) · 967 Bytes
/
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
[bdist_wheel]
universal = 0
[coverage:run]
source = src/
omit =
src/tests/*
branch = True
[coverage:report]
exclude_lines =
pragma: no cover
if __name__ == .__main__.
show_missing = True
[coverage:xml]
output = test-reports/coverage/xml/coverage.xml
[coverage:html]
directory = test-reports/coverage/html
[flake8]
ignore =
# W503 line break before binary operator
W503
exclude =
*.egg-info/,
.git/,
.mypy_cache/,
.pyenvs/,
__pycache__/,
build/,
dist/,
docs/
max-line-length = 100
doctests = True
show-source = True
statistics = True
[mypy]
python_version = 3.8
platform = linux
mypy_path =
src
files =
src
exclude = (^(src/tests)/.*$)
follow_imports = normal
ignore_missing_imports = False
strict_optional = True
disallow_untyped_defs = True
check_untyped_defs = True
warn_return_any = True
[mypy-fd_dj_accounts.*.migrations.*]
ignore_errors = True
[mypy-django.*]
ignore_missing_imports = True