chore: import deployable mai-bot source tree

This commit is contained in:
2026-05-11 00:51:12 +00:00
parent 4813699b3e
commit 7a54015f94
1009 changed files with 312999 additions and 16 deletions

10
pytests/conftest.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
from pathlib import Path
# Add project root to Python path so src imports work
project_root = Path(__file__).parent.parent.absolute()
src_root = project_root / "src"
if str(src_root) not in sys.path:
sys.path.insert(0, str(src_root))
if str(project_root) not in sys.path:
sys.path.insert(1, str(project_root))