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