(tmp_path: Path)
| 251 | |
| 252 | |
| 253 | def test_missing_project_name_errors(tmp_path: Path) -> None: |
| 254 | (tmp_path / "pyproject.toml").write_text( |
| 255 | '[project]\nversion = "0.1.0"\ndependencies = ["crewai>=1.14.0"]\n' |
| 256 | ) |
| 257 | v = _run_without_import_check(tmp_path) |
| 258 | assert "missing_project_name" in _codes(v) |
| 259 | |
| 260 | |
| 261 | def test_missing_lockfile_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected