feat: 新增 ChanMacro 宏观 regime 检测模块

This commit is contained in:
jackyu66git
2026-08-20 16:03:25 +08:00
parent 340676bfbd
commit 29cff47f98
48 changed files with 5846 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# run_tests.sh — Run the ChanMacro test suite.
#
# Usage:
# ./run_tests.sh # All tests
# ./run_tests.sh -v # Verbose
# ./run_tests.sh -k regime # Only regime tests
# ./run_tests.sh --cov # With coverage (requires pytest-cov)
cd "$(dirname "$0")"
python -m pytest tests/ "$@" --tb=short