playreel/backend/tests/run_playreel_after_gate3.sh

26 lines
922 B
Bash
Executable File

#!/usr/bin/env bash
# Playreel 롱컷 — 게이트 ③ 승인 뒤, 게이트 ④(clip_confirm) 직전까지.
# 사용: tests/run_playreel_after_gate3.sh <goods_id>
set -euo pipefail
cd "$(dirname "$0")/.."
goods_id="${1:?사용: $0 <goods_id>}"
run() { echo; echo "── $1 ──"; shift; uv run python -m "$@"; }
run "⑦ tts" tests.playreel.test_tts "$goods_id"
run "⑧ bgm" tests.playreel.test_bgm "$goods_id"
run "⑨ i2v" tests.playreel.test_i2v "$goods_id"
cat <<EOF
══ 게이트 ④ clip_confirm — 사람이 정해야 이어진다 ══
확인할 것
clip.mp4 제목이 훼손되지 않았는지. regions가 없어 자동 게이트가 안 돌므로 눈으로 봐야 한다
i2v.json 쓴 크레딧과 게이트 상태
다시 만들려면 clip.mp4 를 지우고 ⑨를 다시 돌린다 — 그때만 크레딧이 다시 든다.
⑩ hybrid · ⑪ compose 는 아직 서비스가 없다.
EOF