python3Packages.scipy: schedule as big-parallel on Hydra

After 9503adb666 the tests can take many hours or even time out:
https://hydra.nixos.org/job/nixpkgs/staging-next/python310Packages.scipy.x86_64-linux#tabs-charts
That's because without big-parallel we use --cores 2;
I just hope that with big-parallel it won't be exploding
like described around the 9503adb666 commit.
This commit is contained in:
Vladimír Čunát 2023-01-21 09:53:45 +01:00
parent fa7d14584c
commit 020eb79d62
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -67,6 +67,8 @@ buildPythonPackage rec {
runHook postCheck
'';
requiredSystemFeatures = [ "big-parallel" ]; # the tests need lots of CPU time
passthru = {
blas = numpy.blas;
};