Keep STFT tests enabled with precision-appropriate tolerances for x86-64-v3 builds. Add the override under overlays/patches/scipy and remove the commented-out test exclusions.
6 lines
190 B
Nix
6 lines
190 B
Nix
{ scipy }:
|
|
scipy.overridePythonAttrs (old: {
|
|
# Keep the STFT tests enabled with tolerances for x86-64-v3 rounding.
|
|
patches = (old.patches or [ ]) ++ [ ./stft-test-tolerances.patch ];
|
|
})
|