- ignore mypy when it comes to comparing an IntEnum member with an int - Correct type hint for `test_wsgi_server_port`'s `expected_server_port` parameter. Co-authored-by: Tom Christie <tom@tomchristie.com>
43 lines
1.1 KiB
INI
43 lines
1.1 KiB
INI
[flake8]
|
|
ignore = W503, E203, B305, PIE801
|
|
max-line-length = 120
|
|
|
|
[mypy]
|
|
disallow_untyped_defs = True
|
|
disallow_any_generics = True
|
|
ignore_missing_imports = True
|
|
no_implicit_optional = True
|
|
show_error_codes = True
|
|
warn_unused_ignores = True
|
|
warn_unused_configs = True
|
|
disallow_subclassing_any = True
|
|
check_untyped_defs = True
|
|
disallow_untyped_decorators = True
|
|
warn_redundant_casts = True
|
|
strict_concatenate = True
|
|
disallow_incomplete_defs = True
|
|
no_implicit_reexport = True
|
|
warn_return_any = True
|
|
strict_equality = True
|
|
|
|
[mypy-tests.*]
|
|
disallow_untyped_defs = False
|
|
check_untyped_defs = True
|
|
|
|
[tool:isort]
|
|
profile = black
|
|
combine_as_imports = True
|
|
|
|
[tool:pytest]
|
|
addopts = -rxXs
|
|
filterwarnings =
|
|
error
|
|
asyncio_mode = strict
|
|
markers =
|
|
copied_from(source, changes=None): mark test as copied from somewhere else, along with a description of changes made to accodomate e.g. our test setup
|
|
network: marks tests which require network connection. Used in 3rd-party build environments that have network disabled.
|
|
|
|
[coverage:run]
|
|
omit = venv/*, httpx/_compat.py
|
|
include = httpx/*, tests/*
|