(ctx: CLIContext, app_labels: tuple[str, ...])
| 365 | |
| 366 | |
| 367 | async def init(ctx: CLIContext, app_labels: tuple[str, ...]) -> None: |
| 368 | config = _load_config(ctx) |
| 369 | apps_config = _select_apps(config, app_labels or None) |
| 370 | for label, app_config in apps_config.items(): |
| 371 | # Convert AppConfig to dict for _ensure_migrations_package |
| 372 | app_dict = app_config.to_dict() |
| 373 | module, path = _ensure_migrations_package(label, app_dict) |
| 374 | print(f"{label}: {module} -> {path}") |
| 375 | |
| 376 | |
| 377 | async def shell(ctx: CLIContext) -> None: |
no test coverage detected
searching dependent graphs…