chore: resolve linting errors in test modules

This commit is contained in:
Ahmed Allam
2025-12-04 00:02:14 +04:00
committed by Ahmed Allam
parent 3c5ceaa067
commit 2a2f72da0b
3 changed files with 36 additions and 16 deletions
+6
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)
# ============================================================================