Skip to content

Commit d589900

Browse files
test(bash-lint): track 'Resolve runtime imports (agent prompt)' in REQUIRED_STEP_DISPLAY_NAMES (#662)
The resolver_step() function in src/compile/extensions/ado_script.rs emits a bash step with displayName 'Resolve runtime imports (agent prompt)'. This step was already being shellchecked via the runtime-coverage-agent.md fixture, but it was not listed in REQUIRED_STEP_DISPLAY_NAMES. Without the guard, removing the fixture's trigger for this generator would silently drop coverage without any test failure. Adding the name ensures the harness fails fast if the generator stops being exercised. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 75e8dbf commit d589900

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/bash_lint_tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ const REQUIRED_STEP_DISPLAY_NAMES: &[&str] = &[
109109
"Evaluate PR filters", // src/compile/filter_ir.rs (GateContext::PullRequest)
110110
"Verify MCP backends", // src/compile/common.rs (--debug-pipeline only)
111111
"Verify pipeline integrity", // src/compile/common.rs generate_integrity_check
112+
"Resolve runtime imports (agent prompt)", // src/compile/extensions/ado_script.rs resolver_step()
112113
];
113114

114115
fn ado_aw_binary() -> PathBuf {

0 commit comments

Comments
 (0)