(self, tmp_path, items, max_concurrency, on_item=None)
| 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) |
no test coverage detected