From 52b00b0bad79f94cc0075758f2d37ab0ddd698e2 Mon Sep 17 00:00:00 2001 From: Timon Date: Thu, 7 May 2026 18:28:24 +0200 Subject: [PATCH] chore(ml): add mise checklist command (#28267) * chore(ml): add mise checklist command * don't depend tests on installing a cpu flavor --- machine-learning/mise.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/machine-learning/mise.toml b/machine-learning/mise.toml index d83bdcd28b..eceaa6f35d 100644 --- a/machine-learning/mise.toml +++ b/machine-learning/mise.toml @@ -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/" \ No newline at end of file +run = "uv run mypy --strict immich_ml/" + +[tasks.checklist] +run = [ + { task = ":install" }, + { task = ":format" }, + { task = ":lint" }, + { task = ":check" }, + { task = ":test" }, +] +