(tmp_path: Path)
| 349 | |
| 350 | |
| 351 | def test_missing_agents_yaml_errors(tmp_path: Path) -> None: |
| 352 | _scaffold_standard_crew(tmp_path, include_agents_yaml=False) |
| 353 | v = _run_without_import_check(tmp_path) |
| 354 | assert "missing_agents_yaml" in _codes(v) |
| 355 | |
| 356 | |
| 357 | def test_missing_tasks_yaml_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected