From faca8b9c19ea02b3d0896ba01eba5e20130cf489 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 31 Aug 2026 08:42:50 +0000 Subject: [PATCH] python3Packages.skops: skip failing test --- pkgs/development/python-modules/skops/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/skops/default.nix b/pkgs/development/python-modules/skops/default.nix index fd34863ae90f..4c5b6e235b2b 100644 --- a/pkgs/development/python-modules/skops/default.nix +++ b/pkgs/development/python-modules/skops/default.nix @@ -64,13 +64,15 @@ buildPythonPackage (finalAttrs: { # Override the overly strict pyproject.toml:tool.pytest.ini_options.filterwarnings # https://github.com/skops-dev/skops/issues/523 pytestFlags = [ - "-W" - "ignore::FutureWarning" - "-W" - "ignore::DeprecationWarning" + "-Wignore::FutureWarning" + "-Wignore::DeprecationWarning" ]; disabledTests = [ + # AssertionError + # assert result.count("sk-top-container") == 1 + "test_no_overflow" + # fairlearn is not available in nixpkgs "TestAddFairlearnMetricFrame" ]