From 7820fde4e63bea7fc223464e9cea424780bd1b28 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Fri, 3 Jul 2026 14:28:13 +0200 Subject: [PATCH] test: Fix test.py duplicate module name error Mypy scans both src/python/ and test/ under the same jw namespace, and finds three test files named test.py. Without a package root at the test/ level, mypy resolves all of them to the bare module name test, and rejects them as duplicates. Add __init__.py at test/ marks it as a package root, so each test.py resolves to a unique full path, e.g. test.unit.python.jw.pkg.lib.Result.test Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL with pi.dev v0.80.2 Signed-off-by: Jan Lindemann --- test/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test/__init__.py diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 00000000..e69de29b