test_check_ok_stress.py python
21 lines 560 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 1 day ago
1 """Stress — many sequential Check-if-OK scaffolds stay isolated."""
2
3 from __future__ import annotations
4
5 from datetime import date
6 from pathlib import Path
7
8 from tools.check_ok.scaffold import scaffold_side_check
9
10
11 def test_many_topics_do_not_collide(tmp_path: Path) -> None:
12 paths = set()
13 for i in range(40):
14 result = scaffold_side_check(
15 tmp_path,
16 topic=f"topic-{i}",
17 today=date(2026, 7, 17),
18 )
19 assert result.created is True
20 paths.add(result.rel_path)
21 assert len(paths) == 40
File History 1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 1 day ago