test_status_bounded.py file-level

at sha256:4 · View file ↗ · Intel ↗

History
1 files
1 commits
0 hotspots
0 🧊 dead
0 💥 blast risk
sha256:8 docs: queue board-identity follow-ups so they survive the session Capt… · aaronrene · Sep 5, 2026
1 """Performance tests for bounded status execution."""
2
3 from __future__ import annotations
4
5 import time
6 from pathlib import Path
7
8 from tests.support import git_status_runner, run_cli
9
10
11 def test_status_completes_within_budget(tmp_path: Path) -> None:
12 run_cli(["init", "--regime", "git-only", "--non-interactive"], cwd=tmp_path)
13 runner = git_status_runner()
14 start = time.monotonic()
15 code = run_cli(["status"], cwd=tmp_path, runner=runner)
16 elapsed = time.monotonic() - start
17 assert code == 0
18 assert elapsed < 1.0
19 status_calls = [c for c in runner.calls if "status" in c[0]]
20 assert len(status_calls) <= 2