(tmp_path: Path)
| 279 | |
| 280 | |
| 281 | def test_missing_project_name_errors(tmp_path: Path) -> None: |
| 282 | (tmp_path / "pyproject.toml").write_text( |
| 283 | '[project]\nversion = "0.1.0"\ndependencies = ["crewai>=1.14.0"]\n' |
| 284 | ) |
| 285 | v = _run_without_import_check(tmp_path) |
| 286 | assert "missing_project_name" in _codes(v) |
| 287 | |
| 288 | |
| 289 | def test_missing_lockfile_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected