Codebase list httpcore / upstream/0.14.3 setup.cfg
upstream/0.14.3

Tree @upstream/0.14.3 (Download .tar.gz)

setup.cfg @upstream/0.14.3raw · history · blame

[flake8]
ignore = W503, E203, B305
max-line-length = 120
exclude = httpcore/_sync,tests/_sync

[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
plugins = trio_typing.plugin

[mypy-tests.*]
disallow_untyped_defs = False
check_untyped_defs = True

[tool:isort]
profile = black
combine_as_imports = True
known_first_party = httpcore,tests
known_third_party = brotli,certifi,chardet,cryptography,h11,h2,hstspreload,pytest,rfc3986,setuptools,sniffio,trio,trustme,urllib3,uvicorn
skip = httpcore/_sync/,tests/_sync

[tool:pytest]
addopts = -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

[coverage:run]
omit = venv/*, httpcore/_sync/*, httpcore/_compat.py
include = httpcore/*, tests/*