(tmp_path: Path)
| 267 | |
| 268 | |
| 269 | def test_missing_pyproject_errors(tmp_path: Path) -> None: |
| 270 | v = _run_without_import_check(tmp_path) |
| 271 | assert "missing_pyproject" in _codes(v) |
| 272 | assert not v.ok |
| 273 | |
| 274 | |
| 275 | def test_invalid_pyproject_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected