We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7c814 commit ce6948cCopy full SHA for ce6948c
pkgs/development/python-modules/dask-glm/default.nix
@@ -1,5 +1,6 @@
1
{
2
lib,
3
+ stdenv,
4
buildPythonPackage,
5
fetchFromGitHub,
6
@@ -64,7 +65,9 @@ buildPythonPackage rec {
64
65
"test_sparse"
66
];
67
- __darwinAllowLocalNetworking = true;
68
+ # On darwin, tests saturate the entire system, even when constrained to run single-threaded
69
+ # Removing pytest-xdist AND setting --cores to one does not prevent the load from exploding
70
+ doCheck = !stdenv.hostPlatform.isDarwin;
71
72
meta = {
73
description = "Generalized Linear Models with Dask";
0 commit comments