release: v0.10.0

This commit is contained in:
github-actions[bot]
2026-07-09 11:01:08 +00:00
parent cea3c8710d
commit 207d72aefa
8 changed files with 137 additions and 221 deletions
+11
View File
@@ -6,9 +6,20 @@ to the Rust-only golden test fixtures.
import json
import os
import pytest
import manifoldbt as bt
from manifoldbt import run_with_parquet
# The golden fixtures were generated at full (Pro) resolution; the Community
# resolution cap changes the equity-point count and the comparison is
# meaningless. CI unlocks via BT_UNLOCKED=1 (debug builds); locally this needs
# an activated Pro license.
pytestmark = pytest.mark.skipif(
bt.license_info()[0] != "Pro",
reason="requires Pro (fixtures generated at sub-daily resolution); activate a license or use a BT_UNLOCKED dev build",
)
def test_golden_buy_and_hold_matches_fixtures(golden_buy_hold_dir):
"""Mirror of Rust golden_buy_and_hold_equity_trade_metrics_and_manifest_match_fixture."""