httpx/setup.cfg
Marcelo Trylesinski daec2bdcdb
Use ruff instead of flake8, autoflake and isort (#2648)
* Use ruff instead of flake8, autoflake and isort

* Update pyproject.toml
2023-04-05 12:37:10 +02:00

23 lines
878 B
INI

[mypy]
ignore_missing_imports = True
strict = True
[mypy-tests.*]
disallow_untyped_defs = False
check_untyped_defs = True
[tool:pytest]
addopts = -rxXs
filterwarnings =
error
ignore: You seem to already have a custom sys.excepthook handler installed. I'll skip installing Trio's custom handler, but this means MultiErrors will not show full tracebacks.:RuntimeWarning
# See: https://github.com/agronholm/anyio/issues/508
ignore: trio\.MultiError is deprecated since Trio 0\.22\.0:trio.TrioDeprecationWarning
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/*