2021-03-29 16:51:05 +02:00
|
|
|
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "ombi";
|
2023-04-30 16:26:18 +02:00
|
|
|
meta.maintainers = with lib.maintainers; [ woky ];
|
2021-03-29 16:51:05 +02:00
|
|
|
|
|
|
|
nodes.machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{ services.ombi.enable = true; };
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("ombi.service")
|
2022-06-11 14:22:53 +02:00
|
|
|
machine.wait_for_open_port(5000)
|
2021-03-29 16:51:05 +02:00
|
|
|
machine.succeed("curl --fail http://localhost:5000/")
|
|
|
|
'';
|
|
|
|
})
|