test_check_ok_perf.py python
17 lines 484 B
Raw
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 4 days 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:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 4 days ago