python.pkgs.pyqt5: 5.14.2 -> 5.15.0
[NixPkgs.git] / nixos / tests / lidarr.nix
blobd3f83e5d9145befe08917c29f294a9edb79575af
1 import ./make-test-python.nix ({ lib, ... }:
3 with lib;
6   name = "lidarr";
7   meta.maintainers = with maintainers; [ etu ];
9   nodes.machine =
10     { pkgs, ... }:
11     { services.lidarr.enable = true; };
13   testScript = ''
14     start_all()
16     machine.wait_for_unit("lidarr.service")
17     machine.wait_for_open_port("8686")
18     machine.succeed("curl --fail http://localhost:8686/")
19   '';