all tests: added meta.maintainers section

This commit is contained in:
Joachim Schiele
2015-07-12 12:29:51 +02:00
parent 7e021a0fd6
commit 0731489953
56 changed files with 242 additions and 92 deletions
+5 -3
View File
@@ -1,7 +1,10 @@
# Miscellaneous small tests that don't warrant their own VM run.
import ./make-test.nix {
import ./make-test.nix ({ pkgs, ...} : {
name = "misc";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ eelco chaoflow ];
};
machine =
{ config, lib, pkgs, ... }:
@@ -107,5 +110,4 @@ import ./make-test.nix {
$machine->succeed("nix-store -qR /run/current-system | grep nixos-");
};
'';
}
})