python312Packages.flax: ignore DeprecationWarning test failures

This commit is contained in:
Gaetan Lepage
2025-05-23 00:22:51 +02:00
parent 9e02e9fb40
commit a14c69ba2b
@@ -83,6 +83,13 @@ buildPythonPackage rec {
tensorflow
];
pytestFlagsArray = [
"-W"
# DeprecationWarning: Triggering of __jax_array__() during abstractification is deprecated.
# To avoid this error, either explicitly convert your object using jax.numpy.array(), or register your object as a pytree.
"ignore::DeprecationWarning"
];
disabledTestPaths = [
# Docs test, needs extra deps + we're not interested in it.
"docs/_ext/codediff_test.py"