ethanlin01x opened a new pull request, #4077: URL: https://github.com/apache/iggy/pull/4077
## Which issue does this PR address? Relates to #3996 ## Rationale Integration tests for a connector plugin do not run when that plugin changes. Cause: `cargo rail plan` scopes tests via the cargo dependency graph. A plugin is a `cdylib` the runtime loads with `dlopen`, so cargo sees no edge between the plugin and the `integration` crate, and `integration::connectors::<name>` falls outside scope. This affects all 19 plugins. Doris is the only exception, because `core/integration` happens to have a path dependency on it. ## What changed? The pre-merge action now maps each affected plugin to its integration suite: the nextest filter gains `| (package(integration) & test(/^connectors::<name>::/))`, and `integration` joins the build list. ## Local Execution - Passed - Pre-commit hooks ran ## AI Usage 1. Which tools? Claude Code 2. Scope of usage? Implementation and local verification 3. How did you verify the generated code works correctly? Ran the shell under the same `bash -eo pipefail` flags GitHub Actions uses, and checked the generated expressions with `cargo nextest list -E` 4. Can you explain every line of the code if asked? Yes -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
