Run validation with the subprocess-based import check stubbed out; the classifier is exercised directly in its own tests below.
(root: Path)
| 103 | |
| 104 | |
| 105 | def _run_without_import_check(root: Path) -> DeployValidator: |
| 106 | """Run validation with the subprocess-based import check stubbed out; |
| 107 | the classifier is exercised directly in its own tests below.""" |
| 108 | with patch.object(DeployValidator, "_check_module_imports", lambda self: None): |
| 109 | v = DeployValidator(project_root=root) |
| 110 | v.run() |
| 111 | return v |
| 112 | |
| 113 | |
| 114 | def _scaffold_json_crew(root: Path, *, task_agent: str = "researcher") -> None: |
no test coverage detected