nixpkgs/nixos/lib/testing/call-test.nix
Robert Hensing aed1deab05 nixos/testing: Fix release.nix tests evaluation
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.
2022-09-29 10:49:09 +02:00

13 lines
162 B
Nix

{ config, lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
result = mkOption {
internal = true;
default = config;
};
};
}