(tmp_path: Path, name: str)
| 35 | |
| 36 | |
| 37 | def _write_package(tmp_path: Path, name: str) -> Path: |
| 38 | pkg = tmp_path / name |
| 39 | pkg.mkdir() |
| 40 | (pkg / "__init__.py").write_text("", encoding="utf-8") |
| 41 | (pkg / "models.py").write_text("", encoding="utf-8") |
| 42 | return pkg |
| 43 | |
| 44 | |
| 45 | def _write_migrations(pkg: Path, migration_names: list[str]) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…