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
|
[mypy]
python_version = 3.10
ignore_missing_imports = True
mypy_path = quodlibet/packages
exclude = (quodlibet/packages/.+/.+\.py|dev-utils/.*)
follow_imports = silent
disable_error_code = annotation-unchecked
[mypy-quodlibet.packages.*]
ignore_errors = True
[mypy-tests.*]
ignore_errors = True
[mypy-gi.repository]
ignore_errors = True
[mypy-gdist.*]
ignore_errors = True
[tool:pytest]
junit_suite_name = quodlibet
addopts = --tb=short
filterwarnings =
ignore::DeprecationWarning
markers =
quality: Code quality tests (e.g. PEP-8 compliance)
network: Tests that need working internet connectivity
[egg_info]
tag_build =
tag_date = 0
|