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
@@ -3,9 +3,20 @@ import json
import os
import time
import pytest
import manifoldbt as bt
from manifoldbt import run_sweep, run_with_parquet
# The golden fixtures are 1-minute bars; on a Community license the engine caps
# resolution to daily, so these runs produce zero trades and the assertions are
# 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 (sub-daily resolution); activate a license or use a BT_UNLOCKED dev build",
)
def test_sweep_returns_one_result_per_combo(golden_buy_hold_dir):
"""Sweep with 2x2 grid returns 4 results."""