test_check_ok_perf.py python
17 lines 484 B
Raw
sha256:0e9549ec7b463911bc08b7d586dc320b1ac9b1f5c943ee7e3865dcc6cb0f6f83 chore(governance): sync handover+roadmap to 84db8c8 (drift:… Human 1 day ago
1 """Performance — scaffold completes within a local budget."""
2
3 from __future__ import annotations
4
5 import time
6 from datetime import date
7 from pathlib import Path
8
9 from tools.check_ok.scaffold import scaffold_side_check
10
11
12 def test_scaffold_under_budget(tmp_path: Path) -> None:
13 start = time.perf_counter()
14 for i in range(20):
15 scaffold_side_check(tmp_path, topic=f"perf-{i}", today=date(2026, 7, 17))
16 elapsed = time.perf_counter() - start
17 assert elapsed < 2.0
File History 1 commit
sha256:6abcf1fa82a7a621ccbc945f19acdba5bc0db54569599404a1452fb4a096a199 fix(ISR): default require_independent_second_reviewer to require Human minor 1 day ago