From ce8001fb26188254d12d5e527870a4d3ec853f42 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Wed, 2 Oct 2024 16:19:54 -0700 Subject: [PATCH] python3Packages.langchain-chroma: disable broken test --- pkgs/development/python-modules/langchain-chroma/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/langchain-chroma/default.nix b/pkgs/development/python-modules/langchain-chroma/default.nix index 817676cbb1896..1ec6ce71ed5dc 100644 --- a/pkgs/development/python-modules/langchain-chroma/default.nix +++ b/pkgs/development/python-modules/langchain-chroma/default.nix @@ -43,6 +43,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # Bad integration test, not used or vetted by the langchain team + "test_chroma_update_document" + ]; + passthru = { inherit (langchain-core) updateScript; };