mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
tests module: test system.build output instead of systemPackages
This commit is contained in:
parent
c3a7680451
commit
0f21bc31fe
1 changed files with 4 additions and 4 deletions
|
@ -103,7 +103,7 @@
|
|||
virtualisation.emptyDiskImages = builtins.genList (_: 4096) num-disks;
|
||||
};
|
||||
|
||||
testScript = ''
|
||||
testScript = { nodes, ... }: ''
|
||||
def disks(oldmachine, num_disks):
|
||||
disk_flags = ""
|
||||
for i in range(num_disks):
|
||||
|
@ -126,9 +126,9 @@
|
|||
machine.succeed("${tsp-mount}") # verify that the command is idempotent
|
||||
''}
|
||||
${lib.optionalString (testMode == "module") ''
|
||||
machine.succeed("disko-create")
|
||||
machine.succeed("disko-mount")
|
||||
machine.succeed("disko-mount") # verify that the command is idempotent
|
||||
machine.succeed("${nodes.machine.system.build.formatScript}")
|
||||
machine.succeed("${nodes.machine.system.build.mountScript}")
|
||||
machine.succeed("${nodes.machine.system.build.mountScript}") # verify that the command is idempotent
|
||||
''}
|
||||
${lib.optionalString (testMode == "cli") ''
|
||||
# TODO use the disko cli here
|
||||
|
|
Loading…
Reference in a new issue