Unverified Commit 9717c85e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #329037 from pbsds/fix-langchain-core-1721611306

python312Packages.langchain-core: disable flaky test
parents 060545dc 6f1e6f8d
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -86,7 +86,11 @@ buildPythonPackage rec {
    '';
  };

  disabledTests = lib.optionals stdenv.isDarwin [
  disabledTests = [
    # flaky, sometimes fail to strip uuid from AIMessageChunk before comparing to test value
    "test_map_stream"
  ]
  ++ lib.optionals stdenv.isDarwin [
    # Langchain-core the following tests due to the test comparing execution time with magic values.
    "test_queue_for_streaming_via_sync_call"
    "test_same_event_loop"