Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:55:16 +08:00
commit a81fb4a29a
15 changed files with 824 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""Pytest configuration for project-status-report tests."""
import sys
from pathlib import Path
# Add the scripts directory to Python path so tests can import modules
scripts_dir = Path(__file__).parent
sys.path.insert(0, str(scripts_dir))