python3Packages.mtcnn: skip failing test

This commit is contained in:
Gaetan Lepage
2025-12-27 17:01:47 +00:00
parent d29ce3eaf8
commit f8a9902584
@@ -46,6 +46,15 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# Failing since keras 3.13.0.
# ValueError: Exception encountered when calling Conv2D.call().
# The convolution operation resulted in an empty output. Output shape: (0, 48, 48, 3).
# This can happen if the input is too small for the given kernel size, strides, dilation rate,
# and padding mode. Please check the input shape and convolution parameters.
"test_detect_no_faces"
];
meta = {
description = "MTCNN face detection implementation for TensorFlow";
homepage = "https://github.com/ipazc/mtcnn";