python3Packages.librosa: disable failing tests

The display tests compare images rendered and expect them to be within
a certain tolerance. With matplotlib 3.11.0 this tolerance gets exceeded.
This commit is contained in:
Martin Weinelt
2026-06-28 19:57:00 +02:00
parent 22931e0854
commit 43bfa3ff3b
@@ -143,6 +143,11 @@ buildPythonPackage (finalAttrs: {
"test_resample_stereo"
];
disabledTestPaths = [
# matplotlib 3.11 exceeds tolerances for image comparison
"tests/test_display.py"
];
meta = {
description = "Python library for audio and music analysis";
homepage = "https://github.com/librosa/librosa";