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
|
[tool:pytest]
addopts = --cov=async_timeout --cov-report=term --cov-report=html --cov-branch
[metadata]
license_file = LICENSE
[mypy-pytest]
ignore_missing_imports = true
[mypy]
python_version = 3.6
warn_unused_ignores = True
warn_redundant_casts = True
warn_no_return = True
strict_optional = True
show_traceback = True
show_column_numbers = True
no_implicit_optional = True
disallow_incomplete_defs = True
disallow_any_generics = True
ignore_missing_imports = True
[egg_info]
tag_build =
tag_date = 0
|