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