feat!: drop django test, which only ever ran one of the runners

This commit is contained in:
2026-09-08 14:36:38 +00:00
parent 99010cb641
commit b372472de6
3 changed files with 0 additions and 8 deletions

View File

@@ -53,7 +53,6 @@ fn run(ctx: &Ctx, command: cli::Commands) -> Result<ExitCode> {
cli::Django::Manage { rest } => commands::django::manage(ctx, &rest),
cli::Django::Migrate { rest } => commands::django::migrate(ctx, &rest),
cli::Django::Shell => commands::django::shell(ctx),
cli::Django::Test => commands::django::test(ctx),
}?;
Ok(done)