From 1f38d42f19ae9ac0d3a6fb52fd30ebef03abd181 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Tue, 30 Sep 2025 01:33:29 +0200 Subject: [PATCH] open-webui: fix test in ci --- test/services/open-webui.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/services/open-webui.nix b/test/services/open-webui.nix index 5dbd383..0b2fb54 100644 --- a/test/services/open-webui.nix +++ b/test/services/open-webui.nix @@ -62,7 +62,6 @@ let testLib.baseModule testLib.clientLoginModule ]; - virtualisation.memorySize = 4096; test = { subdomain = "o"; }; @@ -179,6 +178,8 @@ in imports = [ clientLoginSso ]; + + virtualisation.memorySize = 4096; }; nodes.server = { config, pkgs, ... }: { imports = [ @@ -190,6 +191,8 @@ in (testLib.sso config.shb.certs.certs.selfsigned.n) sso ]; + + virtualisation.memorySize = 4096; }; testScript = commonTestScript.access;