(tmp_path: Path)
| 245 | |
| 246 | |
| 247 | def test_invalid_pyproject_errors(tmp_path: Path) -> None: |
| 248 | (tmp_path / "pyproject.toml").write_text("this is not valid toml ====\n") |
| 249 | v = _run_without_import_check(tmp_path) |
| 250 | assert "invalid_pyproject" in _codes(v) |
| 251 | |
| 252 | |
| 253 | def test_missing_project_name_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected