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