(tmp_path: Path)
| 259 | |
| 260 | |
| 261 | def test_missing_lockfile_errors(tmp_path: Path) -> None: |
| 262 | _scaffold_standard_crew(tmp_path, include_lockfile=False) |
| 263 | v = _run_without_import_check(tmp_path) |
| 264 | assert "missing_lockfile" in _codes(v) |
| 265 | |
| 266 | |
| 267 | def test_poetry_lock_is_accepted(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected