MCPcopy Create free account
hub / github.com/StackStorm/st2 / get_finalized_params

Function get_finalized_params

st2common/st2common/util/param.py:372–390  ·  view source on GitHub ↗

Left here to keep tests running. Later we would need to split tests so they start testing each function separately.

(
    runnertype_parameter_info,
    action_parameter_info,
    liveaction_parameters,
    action_context,
)

Source from the content-addressed store, hash-verified

370
371
372def get_finalized_params(
373 runnertype_parameter_info,
374 action_parameter_info,
375 liveaction_parameters,
376 action_context,
377):
378 """
379 Left here to keep tests running. Later we would need to split tests so they start testing each
380 function separately.
381 """
382 params = render_live_params(
383 runnertype_parameter_info,
384 action_parameter_info,
385 liveaction_parameters,
386 action_context,
387 )
388 return render_final_params(
389 runnertype_parameter_info, action_parameter_info, params, action_context
390 )

Callers

nothing calls this directly

Calls 2

render_live_paramsFunction · 0.85
render_final_paramsFunction · 0.85

Tested by

no test coverage detected