test_check_ok_stress.py file-level

at sha256:a · View file ↗ · Intel ↗

History
1 files
1 commits
0 hotspots
0 🧊 dead
0 💥 blast risk
sha256:6 fix(ISR): default require_independent_second_reviewer to require Opera… · aaronrene · Sep 2, 2026
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