python3Packages.duckdb: ignore numpy deprecation

This commit is contained in:
Martin Weinelt
2026-06-28 23:29:56 +02:00
parent c07b089cad
commit ca2662455d

View File

@@ -109,7 +109,10 @@ buildPythonPackage rec {
++ optional-dependencies.all;
# test flags from .github/workflows/Python.yml
pytestFlags = [ "--verbose" ];
pytestFlags = [
"--verbose"
"-Wignore::DeprecationWarning"
];
enabledTestPaths = if stdenv.hostPlatform.isDarwin then [ "tests/fast" ] else [ "tests" ];
disabledTestPaths = [