3
0
Fork 0
forked from mirrors/nixpkgs

nixos/nixos-build-vms: fix eval

Within #193485 (and the previous changes) the internal structure of the
testing driver was changed. Since then, `makeTest` returns the
attributes for the VM test(s) (including `driverInteractive`) inside a
sub-attribute called `test`, so without this change running
`nixos-build-vms` would fail like this:

    error: attribute 'driverInteractive' missing
This commit is contained in:
Maximilian Bosch 2022-10-01 20:34:01 +02:00
parent 78cbebb361
commit 3df3bbdc50
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -15,7 +15,7 @@ let
inherit system pkgs;
};
interactiveDriver = (testing.makeTest { inherit nodes; name = "network"; testScript = "start_all(); join_all();"; }).driverInteractive;
interactiveDriver = (testing.makeTest { inherit nodes; name = "network"; testScript = "start_all(); join_all();"; }).test.driverInteractive;
in