1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
check_untyped_defs = True
no_implicit_optional = True
warn_unused_configs = True
warn_unused_ignores = True
[tool:pytest]
log_level = DEBUG
markers =
integration: longer-running integration tests
filterwarnings =
ignore::DeprecationWarning
default::DeprecationWarning:autosuspend
addopts =
--cov-config=setup.cfg
[coverage:run]
branch = True
source = autosuspend
[coverage:paths]
source =
src/
*/site-packages/
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if __name__ == "__main__":
if TYPE_CHECKING:
@abc.abstractmethod
[isort]
profile = black
known_local_folder = tests
case_sensitive = false
combine_as_imports = true
include_trailing_comma = true
reverse_relative = true
|