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.
This commit is contained in:
Martin Weinelt 2022-11-06 16:38:40 +01:00
parent 654375b618
commit 0cd89bba2b
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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/";