Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - fix: enable connector crates tests in CI #3471

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/fluvio-connector-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
fluvio = { workspace = true }
2 changes: 2 additions & 0 deletions makefiles/check.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down