nixos/clickhouse: Migrate tests from handleTest to runTest
This commit is contained in:
parent
4d60b8f537
commit
2723c76503
@ -306,7 +306,7 @@ in
|
||||
cinnamon-wayland = runTest ./cinnamon-wayland.nix;
|
||||
cjdns = runTest ./cjdns.nix;
|
||||
clatd = runTest ./clatd.nix;
|
||||
clickhouse = handleTest ./clickhouse { };
|
||||
clickhouse = import ./clickhouse { inherit runTest; };
|
||||
cloud-init = handleTest ./cloud-init.nix { };
|
||||
cloud-init-hostname = handleTest ./cloud-init-hostname.nix { };
|
||||
cloudlog = runTest ./cloudlog.nix;
|
||||
|
@ -1,4 +1,3 @@
|
||||
import ../make-test-python.nix (
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
name = "clickhouse";
|
||||
@ -32,4 +31,3 @@ import ../make-test-python.nix (
|
||||
)
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
@ -1,12 +1,8 @@
|
||||
{
|
||||
system ? builtins.currentSystem,
|
||||
config ? { },
|
||||
pkgs ? import ../../.. { inherit system config; },
|
||||
}:
|
||||
{ runTest }:
|
||||
|
||||
{
|
||||
base = import ./base.nix { inherit system pkgs; };
|
||||
kafka = import ./kafka.nix { inherit system pkgs; };
|
||||
keeper = import ./keeper.nix { inherit system pkgs; };
|
||||
s3 = import ./s3.nix { inherit system pkgs; };
|
||||
base = runTest ./base.nix;
|
||||
kafka = runTest ./kafka.nix;
|
||||
keeper = runTest ./keeper.nix;
|
||||
s3 = runTest ./s3.nix;
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
import ../make-test-python.nix (
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
@ -171,4 +170,3 @@ import ../make-test-python.nix (
|
||||
)
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
@ -1,4 +1,3 @@
|
||||
import ../make-test-python.nix (
|
||||
{ lib, pkgs, ... }:
|
||||
rec {
|
||||
name = "clickhouse-keeper";
|
||||
@ -182,4 +181,3 @@ import ../make-test-python.nix (
|
||||
)
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
@ -1,4 +1,3 @@
|
||||
import ../make-test-python.nix (
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
@ -120,4 +119,3 @@ import ../make-test-python.nix (
|
||||
))
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user