From b28eb85200dd9abf93f46012c4cfc31cc0430989 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 5 Jan 2026 11:16:32 -0800 Subject: [PATCH] python314Packages.llm: disable failing tests --- pkgs/development/python-modules/llm/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/llm/default.nix b/pkgs/development/python-modules/llm/default.nix index c93fe1269bb0..986aa799e015 100644 --- a/pkgs/development/python-modules/llm/default.nix +++ b/pkgs/development/python-modules/llm/default.nix @@ -6,6 +6,7 @@ fetchFromGitHub, fetchpatch, pytestCheckHook, + pythonAtLeast, pythonOlder, replaceVars, setuptools, @@ -249,6 +250,13 @@ let # TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr # https://github.com/simonw/llm/issues/1293 "test_embed_multi_files_encoding" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # Index out of range + # https://github.com/simonw/llm/issues/1335 + "test_logs_fragments" + "test_expand_fragment_json" + "test_expand_fragment_markdown" ]; pythonImportsCheck = [ "llm" ];