(tmp_path: Path)
| 287 | |
| 288 | |
| 289 | def test_missing_lockfile_errors(tmp_path: Path) -> None: |
| 290 | _scaffold_standard_crew(tmp_path, include_lockfile=False) |
| 291 | v = _run_without_import_check(tmp_path) |
| 292 | assert "missing_lockfile" in _codes(v) |
| 293 | |
| 294 | |
| 295 | def test_poetry_lock_is_accepted(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected