MCPcopy Index your code
hub / github.com/github/spec-kit / _run

Method _run

tests/test_workflows.py:2141–2146  ·  view source on GitHub ↗
(self, tmp_path, items, max_concurrency, on_item=None)

Source from the content-addressed store, hash-verified

2139 return engine, context, state, {"probe": _ProbeStep()}, template
2140
2141 def _run(self, tmp_path, items, max_concurrency, on_item=None):
2142 engine, context, state, registry, template = self._build(tmp_path, on_item)
2143 results = engine._run_fan_out(
2144 items, template, "fan", context, state, registry, max_concurrency
2145 )
2146 return results, state
2147
2148 def test_sequential_default_preserves_order(self, tmp_path):
2149 results, _ = self._run(tmp_path, list(range(5)), 1)

Calls 2

_buildMethod · 0.95
_run_fan_outMethod · 0.80

Tested by

no test coverage detected