Skip to content

Commit

Permalink
fix: enable connector crates tests in CI (infinyon#3471)
Browse files Browse the repository at this point in the history
Added running integration tests for `fluvio-connector-common` and `fluvio-connector-package` crates in CI and fixed one of those tests.
  • Loading branch information
Alexander Galibey committed Aug 16, 2023
1 parent 976930a commit 2c70ff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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

0 comments on commit 2c70ff8

Please sign in to comment.