mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
27 lines
479 B
Nix
27 lines
479 B
Nix
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
|
let
|
|
mainPort = "8001";
|
|
in
|
|
{
|
|
name = "private-gpt";
|
|
meta = with lib.maintainers; {
|
|
maintainers = [ ];
|
|
};
|
|
|
|
nodes = {
|
|
machine = { ... }: {
|
|
services.private-gpt = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
|
|
machine.wait_for_unit("private-gpt.service")
|
|
machine.wait_for_open_port(${mainPort})
|
|
|
|
machine.succeed("curl http://127.0.0.1:${mainPort}")
|
|
'';
|
|
})
|