forked from pgjones/hypercorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (35 loc) · 819 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
[check-manifest]
ignore = tox.ini
[flake8]
ignore = E203, E252, W503, W504
max_line_length = 100
[mypy]
allow_redefinition = True
disallow_subclassing_any = True
disallow_untyped_defs = True
strict_equality = True
strict_optional = False
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
[mypy-_pytest.*]
ignore_missing_imports = True
[mypy-aioquic.*]
ignore_missing_imports = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-h11.*]
ignore_missing_imports = True
[mypy-h2.*]
ignore_missing_imports = True
[mypy-priority.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-trio.*]
ignore_missing_imports = True
[mypy-uvloop.*]
ignore_missing_imports = True
[tool:pytest]
addopts = --no-cov-on-fail --showlocals
testpaths = tests