Move run-in-machine test to a different place, because it does not conform to the other testcases' interface

This commit is contained in:
Sander van der Burg 2013-10-02 13:25:51 +02:00
parent c13041c65c
commit 472aff23b7
2 changed files with 3 additions and 2 deletions

View File

@ -243,5 +243,7 @@ in {
mapAttrsRecursiveCond (x: !x ? test) (n: v: listToAttrs [(nameValuePair system v.test)])
(import ./tests { inherit nixpkgs system; });
in fold recursiveUpdate {} (map testsFor systems);
run-in-machine-tests = pkgs.lib.genAttrs systems (system: import ./tests/run-in-machine.nix { inherit nixpkgs system; });
}

View File

@ -33,5 +33,4 @@ with import ../lib/testing.nix { inherit system minimal; };
tomcat = makeTest (import ./tomcat.nix);
trac = makeTest (import ./trac.nix);
xfce = makeTest (import ./xfce.nix);
run-in-machine = import ./run-in-machine.nix { inherit nixpkgs system; };
}