Skip to content

Commit a3b7b7e

Browse files
committed
fix(tests): enable frontier_extend in test_build_tasks_all_enabled
`frontier_extend` (added on develop in ee9dfbe) defaults to `enabled=False` like `apply_grimoire_projects`, so the "all enabled" test needs to flip it on too — otherwise build_tasks() drops it and the equality against STEP_NAMES fails.
1 parent ddd20a6 commit a3b7b7e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/test_quest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ def test_quest_config_rejects_removed_step_endpoints(tmp_path: Path) -> None:
111111

112112
def test_build_tasks_all_enabled() -> None:
113113
cfg = QuestFileConfig()
114+
# Both default to disabled — flip them on so the assertion below
115+
# exercises every step in STEP_NAMES (the "all enabled" contract).
116+
cfg.quest.steps.frontier_extend.enabled = True
114117
cfg.quest.steps.apply_grimoire_projects.enabled = True
115118
tasks = build_tasks(cfg)
116119
assert [t.name for t in tasks] == list(STEP_NAMES)

0 commit comments

Comments
 (0)