大更新,架构调整,数据分析能力提升,

This commit is contained in:
2026-04-19 21:30:08 +08:00
parent 9d01f004d4
commit 00bd48e7e7
26 changed files with 4375 additions and 252 deletions

11
tests/conftest.py Normal file
View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
"""
Conftest for property-based tests.
Ensures the project root is on sys.path for direct module imports.
"""
import sys
import os
# Add project root to sys.path so we can import modules directly
# (e.g., `from config.app_config import AppConfig`)
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))