nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

authored by

Jörg Thalheim and committed by
GitHub
88b87b7a 979daf34

+14 -9
+14 -9
pkgs/development/python-modules/deepdiff/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + stdenv, 5 6 6 7 # build-system 7 8 setuptools, ··· 20 19 numpy, 21 20 pytestCheckHook, 22 21 python-dateutil, 23 - toml, 24 22 tomli-w, 25 23 polars, 26 24 pandas, ··· 65 65 pandas 66 66 ] ++ lib.flatten (lib.attrValues optional-dependencies); 67 67 68 - disabledTests = [ 69 - # not compatible with pydantic 2.x 70 - "test_pydantic1" 71 - "test_pydantic2" 72 - # Require pytest-benchmark 73 - "test_cache_deeply_nested_a1" 74 - "test_lfu" 75 - ]; 68 + disabledTests = 69 + [ 70 + # not compatible with pydantic 2.x 71 + "test_pydantic1" 72 + "test_pydantic2" 73 + # Require pytest-benchmark 74 + "test_cache_deeply_nested_a1" 75 + "test_lfu" 76 + ] 77 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 78 + # Times out on darwin in Hydra 79 + "test_repeated_timer" 80 + ]; 76 81 77 82 pythonImportsCheck = [ "deepdiff" ]; 78 83