From e47205b624b66186247f10c5c86281f0794d95ab Mon Sep 17 00:00:00 2001 From: Alexander Galibey Date: Wed, 16 Aug 2023 16:35:14 +0400 Subject: [PATCH] fix: enable connector integration tests in CI --- crates/fluvio-connector-common/Cargo.toml | 4 ++-- makefiles/check.mk | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/fluvio-connector-common/Cargo.toml b/crates/fluvio-connector-common/Cargo.toml index 045eca321c..5ef90d409e 100644 --- a/crates/fluvio-connector-common/Cargo.toml +++ b/crates/fluvio-connector-common/Cargo.toml @@ -36,6 +36,6 @@ fluvio-smartengine = { workspace = true , features = [ "transformation"] } [dev-dependencies] -trybuild = { workspace = true } +trybuild = { version = "1.0" } # default workspace dep is forked and fails for this crate serde = { workspace = true, features = ["derive"]} -fluvio = { workspace = true } \ No newline at end of file +fluvio = { workspace = true } diff --git a/makefiles/check.mk b/makefiles/check.mk index a00619faee..f6557060a7 100644 --- a/makefiles/check.mk +++ b/makefiles/check.mk @@ -39,6 +39,8 @@ run-all-unit-test: install_rustup_target cargo test -p fluvio-storage $(BUILD_FLAGS) cargo test -p fluvio-channel-cli $(BUILD_FLAGS) cargo test -p fluvio-connector-derive $(BUILD_FLAGS) + cargo test -p fluvio-connector-common --all-features $(BUILD_FLAGS) + cargo test -p fluvio-connector-package $(BUILD_FLAGS) cargo test -p fluvio-controlplane-metadata --features=smartmodule $(BUILD_FLAGS) make test-all -C crates/fluvio-protocol