mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
17 lines
375 B
Nix
17 lines
375 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
{
|
|
name = "prowlarr";
|
|
meta.maintainers = with lib.maintainers; [ jdreaver ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{ services.prowlarr.enable = true; };
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("prowlarr.service")
|
|
machine.wait_for_open_port(9696)
|
|
machine.succeed("curl --fail http://localhost:9696/")
|
|
'';
|
|
})
|