test_status_bounded.py python
20 lines 636 B
Raw
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 5 days ago
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
File History 1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 5 days ago