1import ./make-test-python.nix (
2 { lib, ... }:
3
4 {
5 name = "ombi";
6 meta.maintainers = with lib.maintainers; [ woky ];
7
8 nodes.machine =
9 { pkgs, ... }:
10 {
11 services.ombi.enable = true;
12 };
13
14 testScript = ''
15 machine.wait_for_unit("ombi.service")
16 machine.wait_for_open_port(5000)
17 machine.succeed("curl --fail http://localhost:5000/")
18 '';
19 }
20)