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:
commit
88b87b7a62
1 changed files with 14 additions and 9 deletions
|
@ -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" ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue