python3Packages.asteroid-filterbanks: disable a failing test for all linux (#436968)

Changed files
+1 -1
pkgs
development
python-modules
asteroid-filterbanks
+1 -1
pkgs/development/python-modules/asteroid-filterbanks/default.nix
···
"test_pcen_jit"
"test_stateful_pcen_jit"
]
-
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
# Flaky: AssertionError: Tensor-likes are not close!
"test_fb_def_and_forward_lowdim"
];
···
"test_pcen_jit"
"test_stateful_pcen_jit"
]
+
++ lib.optionals stdenv.hostPlatform.isLinux [
# Flaky: AssertionError: Tensor-likes are not close!
"test_fb_def_and_forward_lowdim"
];