at 23.11-pre 344 B view raw
1import ./make-test-python.nix ({ pkgs, ... }: { 2 name = "gonic"; 3 4 nodes.machine = { ... }: { 5 services.gonic = { 6 enable = true; 7 settings = { 8 music-path = [ "/tmp" ]; 9 podcast-path = "/tmp"; 10 }; 11 }; 12 }; 13 14 testScript = '' 15 machine.wait_for_unit("gonic") 16 machine.wait_for_open_port(4747) 17 ''; 18})