open-webui: fix test in ci

This commit is contained in:
ibizaman 2025-09-30 01:33:29 +02:00 committed by Pierre Penninckx
parent b6b23541a0
commit 1f38d42f19

View file

@ -62,7 +62,6 @@ let
testLib.baseModule testLib.baseModule
testLib.clientLoginModule testLib.clientLoginModule
]; ];
virtualisation.memorySize = 4096;
test = { test = {
subdomain = "o"; subdomain = "o";
}; };
@ -179,6 +178,8 @@ in
imports = [ imports = [
clientLoginSso clientLoginSso
]; ];
virtualisation.memorySize = 4096;
}; };
nodes.server = { config, pkgs, ... }: { nodes.server = { config, pkgs, ... }: {
imports = [ imports = [
@ -190,6 +191,8 @@ in
(testLib.sso config.shb.certs.certs.selfsigned.n) (testLib.sso config.shb.certs.certs.selfsigned.n)
sso sso
]; ];
virtualisation.memorySize = 4096;
}; };
testScript = commonTestScript.access; testScript = commonTestScript.access;