summaryrefslogtreecommitdiffstats
path: root/nixos/tests/clickhouse/default.nix
blob: 1299eb199f675ec43d94e3b60f204480422e9bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  runTest,
  package,
}:

{
  base = runTest {
    imports = [ ./base.nix ];
    _module.args = {
      inherit package;
    };
  };
  kafka = runTest {
    imports = [ ./kafka.nix ];
    _module.args = {
      inherit package;
    };
  };
  keeper = runTest {
    imports = [ ./keeper.nix ];
    _module.args = {
      inherit package;
    };
  };
  s3 = runTest {
    imports = [ ./s3.nix ];
    _module.args = {
      inherit package;
    };
  };
  ui = runTest {
    imports = [ ./ui.nix ];
    _module.args = {
      inherit package;
    };
  };
}