* Bump flake8-pie from 0.5.0 to 0.15.0 Bumps [flake8-pie](https://github.com/sbdchd/flake8-pie) from 0.5.0 to 0.15.0. - [Release notes](https://github.com/sbdchd/flake8-pie/releases) - [Commits](https://github.com/sbdchd/flake8-pie/commits) --- updated-dependencies: - dependency-name: flake8-pie dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Don't use PIE on 3.6 * Adhere or ignore new rules Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Christie <tom@tomchristie.com> Co-authored-by: Florimond Manca <florimond.manca@protonmail.com>
29 lines
696 B
INI
29 lines
696 B
INI
[flake8]
|
|
ignore = W503, E203, B305, PIE801
|
|
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 = -rxXs
|
|
filterwarnings =
|
|
error
|
|
default:::uvicorn
|
|
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/*
|