python3Packages.duckdb: ignore numpy deprecation

This commit is contained in:
Martin Weinelt 2026-06-28 23:29:56 +02:00
commit ca2662455d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

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 = [