python3Packages.xknx: 1.1.0 -> 1.2.0
[NixPkgs.git] / nixos / tests / uptime-kuma.nix
blob3d588d73cdb5c7cd6409573f160155c8f8a70f1a
1 import ./make-test-python.nix ({ lib, ... }:
3 with lib;
6   name = "uptime-kuma";
7   meta.maintainers = with maintainers; [ julienmalka ];
9   nodes.machine =
10     { pkgs, ... }:
11     { services.uptime-kuma.enable = true; };
13   testScript = ''
14     machine.start()
15     machine.wait_for_unit("uptime-kuma.service")
16     machine.wait_for_open_port(3001)
17     machine.succeed("curl --fail http://localhost:3001/")
18   '';