test_check_ok_perf.py
file-level
1
files
1
commits
0
hotspots
0
🧊 dead
0
💥 blast risk
| 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 |