mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
aed1deab05
Fixes the problem introduced by 12b3066aae
which caused nixos/release.nix to return the wrong attributes, while
intending to only affect nixos/lib's runTest.
This also removes callTest from the test options, because callTest is
only ever invoked by all-tests.nix.
25 lines
468 B
Nix
25 lines
468 B
Nix
{ lib }:
|
|
let
|
|
|
|
evalTest = module: lib.evalModules { modules = testModules ++ [ module ]; };
|
|
runTest = module: (evalTest ({ config, ... }: { imports = [ module ]; result = config.test; })).config.result;
|
|
|
|
testModules = [
|
|
./call-test.nix
|
|
./driver.nix
|
|
./interactive.nix
|
|
./legacy.nix
|
|
./meta.nix
|
|
./name.nix
|
|
./network.nix
|
|
./nodes.nix
|
|
./pkgs.nix
|
|
./run.nix
|
|
./testScript.nix
|
|
];
|
|
|
|
in
|
|
{
|
|
inherit evalTest runTest testModules;
|
|
}
|