python312Packages.dask-glm: disable tests on darwin as they are saturating the system

This commit is contained in:
Gaetan Lepage
2025-04-12 01:43:10 +02:00
parent 1f7c814bda
commit ce6948cd33
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
@@ -64,7 +65,9 @@ buildPythonPackage rec {
"test_sparse"
];
__darwinAllowLocalNetworking = true;
# On darwin, tests saturate the entire system, even when constrained to run single-threaded
# Removing pytest-xdist AND setting --cores to one does not prevent the load from exploding
doCheck = !stdenv.hostPlatform.isDarwin;
meta = {
description = "Generalized Linear Models with Dask";