Unverified Commit 0cd89bba authored by Martin Weinelt's avatar Martin Weinelt
Browse files

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.
parent 654375b6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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/";