test_check_ok_perf.py python
17 lines 484 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 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:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 1 day ago