From c304ec5834c86609933dfc747a2e3c65971caaf1 Mon Sep 17 00:00:00 2001 From: gquetel Date: Fri, 19 Jun 2026 09:15:58 +0200 Subject: [PATCH] python3Packages.mmengine: fix tests with mlflow 3.14 --- pkgs/development/python-modules/mmengine/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/mmengine/default.nix b/pkgs/development/python-modules/mmengine/default.nix index b2dbd44709e5..375efd81d47f 100644 --- a/pkgs/development/python-modules/mmengine/default.nix +++ b/pkgs/development/python-modules/mmengine/default.nix @@ -109,6 +109,11 @@ buildPythonPackage (finalAttrs: { ''; disabledTestPaths = [ + # MlflowVisBackend uses the deprecated mlflow filesystem store, which is + # throws an error since mlflow 3.13. See upstream issue: + # https://github.com/open-mmlab/mmengine/issues/1687 + "tests/test_visualizer/test_vis_backend.py::TestMLflowVisBackend" + # Require unpackaged aim "tests/test_visualizer/test_vis_backend.py::TestAimVisBackend"