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:
parent
654375b618
commit
0cd89bba2b
1 changed files with 5 additions and 0 deletions
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue