Loading nixos/tests/all-tests.nix +12 −3 Original line number Diff line number Diff line Loading @@ -231,9 +231,18 @@ in beanstalkd = handleTest ./beanstalkd.nix { }; bees = handleTest ./bees.nix { }; benchexec = handleTest ./benchexec.nix { }; binary-cache = handleTest ./binary-cache.nix { compression = "zstd"; }; binary-cache-no-compression = handleTest ./binary-cache.nix { compression = "none"; }; binary-cache-xz = handleTest ./binary-cache.nix { compression = "xz"; }; binary-cache = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "zstd"; }; binary-cache-no-compression = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "none"; }; binary-cache-xz = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "xz"; }; bind = handleTest ./bind.nix { }; bird = handleTest ./bird.nix { }; birdwatcher = handleTest ./birdwatcher.nix { }; Loading nixos/tests/binary-cache.nix +71 −76 Original line number Diff line number Diff line { compression, ... }@args: import ./make-test-python.nix ( { lib, pkgs, ... }: { lib, compression, ... }: { name = "binary-cache-" + compression; meta.maintainers = with lib.maintainers; [ thomasjm ]; Loading Loading @@ -85,4 +81,3 @@ import ./make-test-python.nix ( machine.succeed("[ -d %s ] || exit 1" % storePath) ''; } ) args Loading
nixos/tests/all-tests.nix +12 −3 Original line number Diff line number Diff line Loading @@ -231,9 +231,18 @@ in beanstalkd = handleTest ./beanstalkd.nix { }; bees = handleTest ./bees.nix { }; benchexec = handleTest ./benchexec.nix { }; binary-cache = handleTest ./binary-cache.nix { compression = "zstd"; }; binary-cache-no-compression = handleTest ./binary-cache.nix { compression = "none"; }; binary-cache-xz = handleTest ./binary-cache.nix { compression = "xz"; }; binary-cache = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "zstd"; }; binary-cache-no-compression = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "none"; }; binary-cache-xz = runTest { imports = [ ./binary-cache.nix ]; _module.args.compression = "xz"; }; bind = handleTest ./bind.nix { }; bird = handleTest ./bird.nix { }; birdwatcher = handleTest ./birdwatcher.nix { }; Loading
nixos/tests/binary-cache.nix +71 −76 Original line number Diff line number Diff line { compression, ... }@args: import ./make-test-python.nix ( { lib, pkgs, ... }: { lib, compression, ... }: { name = "binary-cache-" + compression; meta.maintainers = with lib.maintainers; [ thomasjm ]; Loading Loading @@ -85,4 +81,3 @@ import ./make-test-python.nix ( machine.succeed("[ -d %s ] || exit 1" % storePath) ''; } ) args