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