forked from lundberg/respx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (43 loc) · 913 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
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
ignore = E501,E266,E731,W503,E203
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 =
--cov=respx
--cov=tests
--cov-report=term-missing
--cov-report=xml
--cov-fail-under 100
-rxXs
[coverage:run]
source = respx,tests
branch = True
[coverage:report]
skip_covered = True
show_missing = True
[mypy]
no_implicit_reexport = True
no_implicit_optional = True
strict_equality = True
strict_optional = False
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
[mypy-pytest.*]
ignore_missing_imports = True