-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.cfg
68 lines (55 loc) · 1.14 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
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
ignore = B024,C408,E203,W503
exclude = .git
show-source = true
[isort]
line_length = 88
known_first_party = respx
default_section = THIRDPARTY
multi_line_output = 3
combine_as_imports = true
include_trailing_comma = true
force_grid_wrap = 0
[tool:pytest]
addopts =
-p no:respx
--cov=respx
--cov=tests
--cov-report=term-missing
--cov-report=xml
--cov-fail-under 100
-rxXs
asyncio_mode = auto
[coverage:run]
source = respx,tests
branch = True
[coverage:report]
skip_covered = True
show_missing = True
[mypy]
python_version = 3.7
files = respx,tests
pretty = True
no_implicit_reexport = True
no_implicit_optional = True
strict_equality = True
strict_optional = True
check_untyped_defs = True
disallow_incomplete_defs = True
ignore_missing_imports = False
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
show_error_codes = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-trio.*]
ignore_missing_imports = True
[mypy-flask.*]
ignore_missing_imports = True
[mypy-starlette.*]
ignore_missing_imports = True