移除 app 入口 stale TODO banner
All checks were successful
CD Pipeline / deploy (push) Successful in 57s

This commit is contained in:
OoO
2026-05-13 19:05:01 +08:00
parent 754dc60695
commit 46e819a020
3 changed files with 8 additions and 7 deletions

View File

@@ -63,6 +63,13 @@ def test_app_py_stays_blueprint_only_for_routes():
assert "@app.route" not in app_source
def test_app_py_does_not_start_with_stale_restart_todo_banner():
app_source = (ROOT / "app.py").read_text(encoding="utf-8")
assert not app_source.startswith("# ================= TODO LIST")
assert "重開機後請依序執行" not in app_source
def test_active_guides_do_not_point_to_removed_ai_services():
active_guides = [
ROOT / "docs" / "ELEPHANT_ALPHA_SETUP.md",