mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
move standalone test to separate file
This commit is contained in:
parent
e4af31d97b
commit
0725574ad8
2 changed files with 8 additions and 3 deletions
|
@ -13,8 +13,6 @@ let
|
|||
(lib.attrNames (builtins.readDir ./.))
|
||||
);
|
||||
|
||||
allTests = lib.genAttrs allTestFilenames (test: import (./. + "/${test}.nix") { inherit diskoLib pkgs; }) // {
|
||||
standalone = (pkgs.nixos [ ../example/stand-alone/configuration.nix ]).config.system.build.toplevel;
|
||||
};
|
||||
allTests = lib.genAttrs allTestFilenames (test: import (./. + "/${test}.nix") { inherit diskoLib pkgs; });
|
||||
in
|
||||
allTests
|
||||
|
|
7
tests/standalone.nix
Normal file
7
tests/standalone.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs ? import <nixpkgs> { }
|
||||
, diskoLib ? pkgs.callPackage ../lib { }
|
||||
}:
|
||||
(pkgs.nixos [
|
||||
../example/stand-alone/configuration.nix
|
||||
{ documentation.enable = false; }
|
||||
]).config.system.build.toplevel
|
Loading…
Reference in a new issue