1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 17:46:29 +09:00

python3Packages.deepdiff: disable test on darwin that times out in Hydra (#404021)

This commit is contained in:
Jörg Thalheim 2025-05-04 06:00:07 +02:00 committed by GitHub
commit 88b87b7a62
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
# build-system
setuptools,
@ -19,7 +20,6 @@
numpy,
pytestCheckHook,
python-dateutil,
toml,
tomli-w,
polars,
pandas,
@ -65,14 +65,19 @@ buildPythonPackage rec {
pandas
] ++ lib.flatten (lib.attrValues optional-dependencies);
disabledTests = [
# not compatible with pydantic 2.x
"test_pydantic1"
"test_pydantic2"
# Require pytest-benchmark
"test_cache_deeply_nested_a1"
"test_lfu"
];
disabledTests =
[
# not compatible with pydantic 2.x
"test_pydantic1"
"test_pydantic2"
# Require pytest-benchmark
"test_cache_deeply_nested_a1"
"test_lfu"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Times out on darwin in Hydra
"test_repeated_timer"
];
pythonImportsCheck = [ "deepdiff" ];