reframe / mypy.ini
macayaven's picture
first-features (#1)
c6ce43e verified
Raw
History Blame
498 Bytes
[mypy]
python_version = 3.10
ignore_missing_imports = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unreachable = True
strict_optional = True
check_untyped_defs = True
exclude = ^reframe\.egg-info/|^build/|^dist/|^\.venv/
mypy_path = .
namespace_packages = True
explicit_package_bases = True
# Keep typing strictness reasonable for this project
disallow_untyped_defs = False
disallow_any_generics = False
# Don’t type-check tests strictly
[mypy-tests.*]
ignore_errors = True