* First pass as switching dispatchers over to httpcore interface * Updates for httpcore interface * headers in dispatch API as plain list of bytes * Integrate against httpcore 0.6 * Integrate against httpcore interface * Drop UDS, since not supported by httpcore * Fix base class for mock dispatchers in tests * Merge master and mark as potential '0.13.dev0' release
22 lines
668 B
INI
22 lines
668 B
INI
[flake8]
|
|
ignore = W503, E203, B305
|
|
max-line-length = 88
|
|
|
|
[mypy]
|
|
disallow_untyped_defs = True
|
|
ignore_missing_imports = True
|
|
|
|
[tool:isort]
|
|
combine_as_imports = True
|
|
force_grid_wrap = 0
|
|
include_trailing_comma = True
|
|
known_first_party = httpx,tests
|
|
known_third_party = brotli,certifi,chardet,cryptography,hstspreload,httpcore,pytest,rfc3986,setuptools,sniffio,trio,trustme,urllib3,uvicorn
|
|
line_length = 88
|
|
multi_line_output = 3
|
|
|
|
[tool:pytest]
|
|
addopts = --cov=httpx --cov=tests --cov-report=term-missing -rxXs
|
|
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
|