(tmp_path: Path)
| 315 | |
| 316 | |
| 317 | def test_missing_crew_py_errors(tmp_path: Path) -> None: |
| 318 | _scaffold_standard_crew(tmp_path, include_crew_py=False) |
| 319 | v = _run_without_import_check(tmp_path) |
| 320 | assert "missing_crew_py" in _codes(v) |
| 321 | |
| 322 | |
| 323 | def test_missing_agents_yaml_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected