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