Commit 8afa2ba0 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.deepdiff: disable test on darwin that times out in Hydra

parent b440606b
Loading
Loading
Loading
Loading
+14 −9
Original line number Diff line number Diff line
@@ -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,13 +65,18 @@ buildPythonPackage rec {
    pandas
  ] ++ lib.flatten (lib.attrValues optional-dependencies);

  disabledTests = [
  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" ];