at 23.05-pre 351 B view raw
1import ./make-test-python.nix ({ pkgs, ...} : { 2 name = "simple"; 3 meta = with pkgs.lib.maintainers; { 4 maintainers = [ eelco ]; 5 }; 6 7 nodes.machine = { ... }: { 8 imports = [ ../modules/profiles/minimal.nix ]; 9 }; 10 11 testScript = 12 '' 13 start_all() 14 machine.wait_for_unit("multi-user.target") 15 machine.shutdown() 16 ''; 17})