chore: resolve linting errors in test modules

This commit is contained in:
Ahmed Allam
2025-12-03 23:33:38 +04:00
committed by Ahmed Allam
parent 65c3383ecc
commit 6c5c0b0d1c
3 changed files with 36 additions and 16 deletions

View File

@@ -129,9 +129,15 @@ module = [
"textual.*",
"pyte.*",
"libtmux.*",
"pytest.*",
]
ignore_missing_imports = true
# Relax strict rules for test files (pytest decorators are not fully typed)
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_decorators = false
# ============================================================================
# Ruff Configuration (Fast Python Linter & Formatter)
# ============================================================================