test_check_ok_stress.py python
21 lines 560 B
Raw
sha256:0e9549ec7b463911bc08b7d586dc320b1ac9b1f5c943ee7e3865dcc6cb0f6f83 chore(governance): sync handover+roadmap to 84db8c8 (drift:… Human 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:6abcf1fa82a7a621ccbc945f19acdba5bc0db54569599404a1452fb4a096a199 fix(ISR): default require_independent_second_reviewer to require Human minor 1 day ago