From 7f899d3495d1f05da069bee6ad1b8ac596713804 Mon Sep 17 00:00:00 2001 From: xxchan Date: Fri, 27 Oct 2023 01:34:11 +0800 Subject: [PATCH] disable some tests --- src/cmd/Cargo.toml | 8 ++++++++ src/cmd_all/Cargo.toml | 1 + src/meta/node/Cargo.toml | 3 +++ 3 files changed, 12 insertions(+) diff --git a/src/cmd/Cargo.toml b/src/cmd/Cargo.toml index 8ba72d6a24af4..de69cc3574509 100644 --- a/src/cmd/Cargo.toml +++ b/src/cmd/Cargo.toml @@ -49,25 +49,33 @@ workspace-hack = { path = "../workspace-hack" } [target.'cfg(enable_task_local_alloc)'.dependencies] task_stats_alloc = { path = "../utils/task_stats_alloc" } +[lib] +test = false + [[bin]] name = "frontend" path = "src/bin/frontend_node.rs" +test = false [[bin]] name = "meta-node" path = "src/bin/meta_node.rs" +test = false [[bin]] name = "compute-node" path = "src/bin/compute_node.rs" +test = false [[bin]] name = "compactor" path = "src/bin/compactor.rs" +test = false [[bin]] name = "risectl" path = "src/bin/ctl.rs" +test = false [lints] workspace = true diff --git a/src/cmd_all/Cargo.toml b/src/cmd_all/Cargo.toml index 9a4b34c094196..e5aa9e3c68d04 100644 --- a/src/cmd_all/Cargo.toml +++ b/src/cmd_all/Cargo.toml @@ -69,6 +69,7 @@ task_stats_alloc = { path = "../utils/task_stats_alloc" } [[bin]] name = "risingwave" path = "src/bin/risingwave.rs" +test = false [lints] workspace = true diff --git a/src/meta/node/Cargo.toml b/src/meta/node/Cargo.toml index dcfa053fdfc4b..e7597c0d041f3 100644 --- a/src/meta/node/Cargo.toml +++ b/src/meta/node/Cargo.toml @@ -54,5 +54,8 @@ workspace-hack = { path = "../../workspace-hack" } [dev-dependencies] +[lib] +test = false + [lints] workspace = true