G7 평가 입력 안내 보강

This commit is contained in:
Yun Chan 2026-08-10 02:55:21 +09:00
parent 3067b72526
commit 190ae70d4d
4 changed files with 52 additions and 7 deletions

View file

@ -151,6 +151,17 @@ class G7HumanVoiceGainIntakeTests(unittest.TestCase):
)
self.assertIs(True, manifest["template_only"])
self.assertFalse(json.loads(output.getvalue())["template_is_evidence"])
readme = (target / MODULE.README_NAME).read_text(encoding="utf-8")
for required_guidance in (
"## 작성 순서",
"`registered_at`은 `held_out_labels_opened_at`보다 빨라야 한다",
"`observed`, `missing`, `error`",
"ICC(A,1) 0.75 이상",
"categorical kappa 0.70 이상",
"bootstrap 10,000회",
"--compile <intake-dir> --out <pack.json>",
):
self.assertIn(required_guidance, readme)
report, pack = MODULE.compile_intake(target)
self.assertIsNone(pack)