(tmp_path: Path)
| 239 | |
| 240 | |
| 241 | def test_missing_pyproject_errors(tmp_path: Path) -> None: |
| 242 | v = _run_without_import_check(tmp_path) |
| 243 | assert "missing_pyproject" in _codes(v) |
| 244 | assert not v.ok |
| 245 | |
| 246 | |
| 247 | def test_invalid_pyproject_errors(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected