From 837cff79ca793c40db34781fcbd27c81949dbf8c Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Fri, 30 May 2025 17:24:34 -0700 Subject: [PATCH] llm: include the tests for all plugins as part of passthru.tests --- pkgs/development/python-modules/llm/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/llm/default.nix b/pkgs/development/python-modules/llm/default.nix index f237f3fbbecc..70d606ec556b 100644 --- a/pkgs/development/python-modules/llm/default.nix +++ b/pkgs/development/python-modules/llm/default.nix @@ -231,6 +231,9 @@ let mkPluginTest = plugin: { ${plugin.pname} = callPackage ./mk-plugin-test.nix { inherit llm plugin; }; }; + + # include tests for all the plugins + tests = lib.mergeAttrsList (map (name: python.pkgs.${name}.tests) withPluginsArgNames); }; meta = {