mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixosTests.binary-cache{no-compression,xz}: migrate to runTest
Part of #386873
This commit is contained in:
parent
a6a9f5f195
commit
fab4accced
2 changed files with 83 additions and 79 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue