mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 09:36:20 +09:00
parent
0aa6ecb083
commit
38d86e4725
2 changed files with 5 additions and 6 deletions
|
@ -275,7 +275,7 @@ in
|
|||
cage = handleTest ./cage.nix { };
|
||||
cagebreak = handleTest ./cagebreak.nix { };
|
||||
calibre-web = runTest ./calibre-web.nix;
|
||||
calibre-server = handleTest ./calibre-server.nix { };
|
||||
calibre-server = import ./calibre-server.nix { inherit pkgs runTest; };
|
||||
canaille = handleTest ./canaille.nix { };
|
||||
castopod = handleTest ./castopod.nix { };
|
||||
cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; };
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
{
|
||||
system ? builtins.currentSystem,
|
||||
config ? { },
|
||||
pkgs ? import ../.. { inherit system config; },
|
||||
pkgs,
|
||||
runTest,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
|
||||
inherit (pkgs.lib)
|
||||
concatStringsSep
|
||||
maintainers
|
||||
|
@ -74,7 +73,7 @@ let
|
|||
in
|
||||
mapAttrs (
|
||||
test: testConfig:
|
||||
(makeTest (
|
||||
(runTest (
|
||||
let
|
||||
nodeName = testConfig.nodeName or test;
|
||||
calibreConfig = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue