From 0cd89bba2bf7ad48d186ca6e81867d3c03a38057 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 6 Nov 2022 16:38:40 +0100 Subject: [PATCH] python3Packages.dask-glm: disable failing tests Some times require the `loop_in_thread` fixture that for some reason isn't available anymore. There are indiciations that it can be imported from another location after distributed>=2022.8.0, but the dask-glm upstream is not very active anymore. --- pkgs/development/python-modules/dask-glm/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/dask-glm/default.nix b/pkgs/development/python-modules/dask-glm/default.nix index bd9b468064dd..d0c7b128bc09 100644 --- a/pkgs/development/python-modules/dask-glm/default.nix +++ b/pkgs/development/python-modules/dask-glm/default.nix @@ -54,6 +54,11 @@ buildPythonPackage rec { "dask_glm/tests/test_utils.py" ]; + disabledTests = [ + # missing fixture with distributed>=2022.8.0 + "test_determinism_distributed" + ]; + meta = with lib; { description = "Generalized Linear Models with Dask"; homepage = "https://github.com/dask/dask-glm/";