mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
5803706662
Fix some fallout from de3e423
(PR #171280).
13 lines
247 B
Nix
13 lines
247 B
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "navidrome";
|
|
|
|
nodes.machine = { ... }: {
|
|
services.navidrome.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("navidrome")
|
|
machine.wait_for_open_port(4533)
|
|
'';
|
|
})
|