python3Packages.blosc2: disable tests that generate excess threads (#480209)

This commit is contained in:
Gaétan Lepage
2026-01-15 09:42:28 +00:00
committed by GitHub
@@ -76,6 +76,10 @@ buildPythonPackage rec {
]
++ lib.optionals runTorchTests [ torch ];
disabledTestMarks = [
"network"
];
disabledTests = [
# attempts external network requests
"test_with_remote"
@@ -85,6 +89,14 @@ buildPythonPackage rec {
"test_expand_dims"
];
disabledTestPaths = [
# Threads grow without limit
# https://github.com/Blosc/python-blosc2/issues/556
"tests/ndarray/test_lazyexpr.py"
"tests/ndarray/test_lazyexpr_fields.py"
"tests/ndarray/test_reductions.py"
];
passthru.c-blosc2 = c-blosc2;
meta = {