Add Handbook.md benchmark tasks

This commit is contained in:
DerekSurge
2026-06-24 12:44:34 -07:00
commit 72f9a65917
1800 changed files with 323589 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from __future__ import annotations
import sys
from pathlib import Path
import pytest
from slack_mock.state import set_snapshot_paths
sys.path.insert(0, str(Path(__file__).parent))
@pytest.fixture(autouse=True)
def clean_env(monkeypatch: pytest.MonkeyPatch):
monkeypatch.delenv("INPUTDIR", raising=False)
monkeypatch.delenv("OUTPUTDIR", raising=False)
monkeypatch.delenv("BUNDLEDIR", raising=False)
monkeypatch.delenv("BUNDLE_OUTPUT_DIR", raising=False)
monkeypatch.delenv("MCP_PROXY_TOKEN", raising=False)
set_snapshot_paths(final_path=None, bundle_state_path=None)
yield
set_snapshot_paths(final_path=None, bundle_state_path=None)