Unverified Commit df3c93ce authored by Phillip Cloud's avatar Phillip Cloud
Browse files

python3.pkgs.pylance: disable tests that are incompatible with duckdb 1.1.1

parent 1ee444ad
Loading
Loading
Loading
Loading
+15 −10
Original line number Diff line number Diff line
@@ -100,7 +100,8 @@ buildPythonPackage rec {
    cd python/python/tests
  '';

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
  disabledTests =
    lib.optionals stdenv.hostPlatform.isDarwin [
      # AttributeError: module 'torch.distributed' has no attribute 'is_initialized'
      "test_convert_int_tensors"
      "test_ground_truth"
@@ -109,6 +110,10 @@ buildPythonPackage rec {
      "test_iter_filter"
      "test_iter_over_dataset_fixed_shape_tensor"
      "test_iter_over_dataset_fixed_size_lists"
    ]
    ++ [
      # incompatible with duckdb 1.1.1
      "test_duckdb_pushdown_extension_types"
    ];

  passthru.updateScript = nix-update-script {