From cb3b8bcc94fbd0fcb27a64edbb7f62cd0a975543 Mon Sep 17 00:00:00 2001 From: PythonWoods-Dev Date: Sat, 13 Jun 2026 13:40:06 +0200 Subject: [PATCH] test: exclude ZenzicConfig default excluded dirs from i18n parity hypothesis generation Signed-off-by: PythonWoods-Dev --- tests/test_i18n_parity.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_i18n_parity.py b/tests/test_i18n_parity.py index 52ce7f7..2a56252 100644 --- a/tests/test_i18n_parity.py +++ b/tests/test_i18n_parity.py @@ -237,7 +237,11 @@ def test_extra_sources_aggregated(tmp_path: Path) -> None: max_size=12, ).filter( lambda s: ( - s not in (".", "..") and "/" not in s and "\\" not in s and s not in SYSTEM_EXCLUDED_DIRS + s not in (".", "..") + and "/" not in s + and "\\" not in s + and s not in SYSTEM_EXCLUDED_DIRS + and s not in {"includes", "stylesheets", "overrides"} ) )