mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.duckdb: ignore numpy deprecation
This commit is contained in:
parent
c07b089cad
commit
ca2662455d
1 changed files with 4 additions and 1 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue