test_landing_bounded.py python
18 lines 473 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 3 days ago
1 """Performance tests — landing validator bounded on real kit tree."""
2
3 from __future__ import annotations
4
5 import time
6 from pathlib import Path
7
8 from tools.landing.validate import validate_landing
9
10 KIT_ROOT = Path(__file__).resolve().parents[2]
11
12
13 def test_validate_landing_under_half_second() -> None:
14 start = time.monotonic()
15 result = validate_landing(KIT_ROOT)
16 elapsed = time.monotonic() - start
17 assert result.ok, result.errors
18 assert elapsed < 0.5
File History 1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 3 days ago