From fb0235fa938c3be45db9228e93f1f8bf6dbd5c5d Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:02:12 +0800 Subject: [PATCH] fix: include ibkr monthly readiness command --- .../monthly_snapshot_audit_issue.py | 1 + tests/test_monthly_snapshot_audit_issue.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/hk_equity_snapshot_pipelines/monthly_snapshot_audit_issue.py b/src/hk_equity_snapshot_pipelines/monthly_snapshot_audit_issue.py index e4b0aa8..c8e04b3 100644 --- a/src/hk_equity_snapshot_pipelines/monthly_snapshot_audit_issue.py +++ b/src/hk_equity_snapshot_pipelines/monthly_snapshot_audit_issue.py @@ -129,6 +129,7 @@ def build_monthly_snapshot_audit_issue( "python scripts/print_first_snapshot_promotion_plan.py --json", "python scripts/print_snapshot_promotion_matrix.py --json", "python scripts/print_snapshot_readiness.py --profile hk_low_vol_dividend_quality_snapshot --platform longbridge --json", + "python scripts/print_snapshot_readiness.py --profile hk_low_vol_dividend_quality_snapshot --platform ibkr --json", "hkeq-validate-live-enable-evidence --evidence-file --json", "```", "", diff --git a/tests/test_monthly_snapshot_audit_issue.py b/tests/test_monthly_snapshot_audit_issue.py index bb2adb9..da2133e 100644 --- a/tests/test_monthly_snapshot_audit_issue.py +++ b/tests/test_monthly_snapshot_audit_issue.py @@ -37,6 +37,8 @@ def test_build_monthly_snapshot_audit_issue_scopes_codex_review(): assert "research-only / deprioritized" in body assert "no publish, no deployment, no broker orders" not in body.lower() assert "deploy Cloud Run, or place broker orders" in body + assert "python scripts/print_snapshot_readiness.py --profile hk_low_vol_dividend_quality_snapshot --platform longbridge --json" in body + assert "python scripts/print_snapshot_readiness.py --profile hk_low_vol_dividend_quality_snapshot --platform ibkr --json" in body assert "hkeq-validate-live-enable-evidence" in body