From 9258f2bdb4356313135361e36c4b649a7fa69d39 Mon Sep 17 00:00:00 2001 From: Yoshihiko Ozaki <30489874+y0z@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:59:14 +0900 Subject: [PATCH] Update tests/mlflow/test_mlflow.py Co-authored-by: Shuhei Watanabe <47781922+nabenabe0928@users.noreply.github.com> --- tests/mlflow/test_mlflow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/mlflow/test_mlflow.py b/tests/mlflow/test_mlflow.py index 5651c2bf..0082fd19 100644 --- a/tests/mlflow/test_mlflow.py +++ b/tests/mlflow/test_mlflow.py @@ -127,6 +127,7 @@ def test_use_existing_experiment_by_id(tmpdir: py.path.local) -> None: assert experiment.experiment_id == experiment_id assert experiment.name == "foo" + # TODO(y0z): Remove type ignore once the MLFlow typing is fixed. runs = mlfl_client.search_runs(experiment_id) # type: ignore assert len(runs) == 10