httpx/setup.cfg
Johannes ac7704e78c
Remove seed-isort-config (#1321)
As of isort 5 seed-isort-config is no longer needed.

We can get rid of some explicit config too as it's now more clever.
2020-09-24 11:08:07 +01:00

21 lines
470 B
INI

[flake8]
ignore = W503, E203, B305
max-line-length = 120
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
[mypy-tests.*]
disallow_untyped_defs = False
check_untyped_defs = True
[tool:isort]
profile = black
combine_as_imports = True
[tool:pytest]
addopts = --cov=httpx --cov=tests -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