nixpkgs/nixos/tests/litellm.nix
Wolfgang Walther c283f32d29
treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

28 lines
369 B
Nix

{ lib, ... }:
let
mainPort = "8080";
in
{
name = "litellm";
nodes = {
machine =
{ ... }:
{
services.litellm = {
enable = true;
};
};
};
testScript = ''
machine.start()
machine.wait_for_unit("litellm.service")
machine.wait_for_open_port(${mainPort})
'';
meta = {
maintainers = [ ];
};
}