chore(ml): add mise checklist command (#28267)

* chore(ml): add mise checklist command

* don't depend tests on installing a cpu flavor
pull/28271/head
Timon 2026-05-07 18:28:24 +02:00 committed by GitHub
parent 21af184045
commit 52b00b0bad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 1 deletions

View File

@ -15,4 +15,14 @@ run = "uv run pytest --cov=immich_ml --cov-report term-missing"
run = "uv run ruff format immich_ml"
[tasks.check]
run = "uv run mypy --strict immich_ml/"
run = "uv run mypy --strict immich_ml/"
[tasks.checklist]
run = [
{ task = ":install" },
{ task = ":format" },
{ task = ":lint" },
{ task = ":check" },
{ task = ":test" },
]