()
| 668 | run_result: dict[str, object] = {} |
| 669 | |
| 670 | def _run() -> None: |
| 671 | try: |
| 672 | batch, result_files = run_collected(ext, files, jobs=2) |
| 673 | except Exception as e: # pragma: no cover - test harness plumbing |
| 674 | run_result["error"] = e |
| 675 | return |
| 676 | run_result["batch"] = batch |
| 677 | run_result["files"] = result_files |
| 678 | |
| 679 | worker = threading.Thread(target=_run) |
| 680 | with patch( |
nothing calls this directly
no test coverage detected