Skip to content

Commit 67ddfec

Browse files
committed
feat: Add test-utils feature gate
1 parent b37c416 commit 67ddfec

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

crates/stackable-operator/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ repository.workspace = true
99

1010
[features]
1111
default = ["crds"]
12-
full = ["crds", "certs", "time", "webhook", "kube-ws"]
12+
full = ["crds", "certs", "time", "webhook", "kube-ws", "test-utils"]
1313

1414
crds = ["dep:stackable-versioned"]
1515
certs = ["dep:stackable-certs"]
1616
time = ["stackable-shared/time"]
1717
webhook = ["dep:stackable-webhook"]
1818
kube-ws = ["kube/ws"]
19+
test-utils = []
1920

2021
[dependencies]
2122
stackable-certs = { path = "../stackable-certs", optional = true }

crates/stackable-operator/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ pub mod product_config_utils;
3131
pub mod product_logging;
3232
pub mod role_utils;
3333
pub mod status;
34+
#[cfg(feature = "test-utils")]
3435
pub mod test_utils;
3536
pub mod utils;
3637
pub mod validation;

0 commit comments

Comments
 (0)