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 -2
View File
@@ -1,7 +1,10 @@
# This test runs docker-registry and check if it works
import ./make-test.nix {
import ./make-test.nix ({ pkgs, ...} : {
name = "docker-registry";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ offline ];
};
nodes = {
registry = { config, pkgs, ... }: {
@@ -37,4 +40,4 @@ import ./make-test.nix {
$client2->succeed("docker pull registry:8080/scratch");
$client2->succeed("docker images | grep scratch");
'';
}
})