(tmp_path: Path)
| 343 | |
| 344 | |
| 345 | def test_missing_crew_py_errors(tmp_path: Path) -> None: |
| 346 | _scaffold_standard_crew(tmp_path, include_crew_py=False) |
| 347 | v = _run_without_import_check(tmp_path) |
| 348 | assert "missing_crew_py" in _codes(v) |
| 349 | |
| 350 | |
| 351 | def test_missing_agents_yaml_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected