forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (60 loc) · 1.28 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
81
82
83
84
85
86
87
88
89
90
91
[aliases]
test = pytest
[metadata]
license_file = LICENSE.txt
[pep8]
max-line-length=79
[easy_install]
zip_ok = false
[flake8]
ignore = N801,N802,N803,E226
max-line-length=79
[tool:pytest]
testpaths = tests
addopts = --aiohttp-loop=all
filterwarnings = error
[isort]
known_third_party=jinja2
known_first_party=aiohttp,aiohttp_jinja2,aiopg
lines_after_imports=2
[report]
exclude_lines =
@abc.abstractmethod
@abstractmethod
[coverage:run]
branch = True
source = aiohttp, tests
omit = site-packages
[mypy]
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
# uncomment next lines
# to enable strict mypy mode
#
# check_untyped_defs = True
# disallow_any_generics = True
# disallow_untyped_defs = True
# warn_unused_ignores = True
[mypy-pytest]
ignore_missing_imports = true
[mypy-uvloop]
ignore_missing_imports = true
[mypy-tokio]
ignore_missing_imports = true
[mypy-async_generator]
ignore_missing_imports = true
[mypy-aiodns]
ignore_missing_imports = true
[mypy-gunicorn.config]
ignore_missing_imports = true
[mypy-gunicorn.workers]
ignore_missing_imports = true
[mypy-brotli]
ignore_missing_imports = true
[mypy-chardet]
ignore_missing_imports = true
[mypy-cchardet]
ignore_missing_imports = true
[mypy-idna_ssl]
ignore_missing_imports = true