From 1c55fe26b9f6299fb65d55e9953331c95bd2fbaa Mon Sep 17 00:00:00 2001 From: shokollm <270575765+shokollm@users.noreply.github.com> Date: Fri, 3 Apr 2026 15:12:59 +0000 Subject: [PATCH] test: ensure tests package is importable Add tests/__init__.py to make tests/ a proper Python package, enabling cross-imports between test modules (e.g., test_services importing from test_ports). All 145 tests pass: - tests/: 90 tests - apps/telegram-bot/tests/: 55 tests --- tests/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 -- 2.49.1