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