ci: acknowledge composio/action_tool.rs in feature-gate-smoke allowlist - #5070
Conversation
Merged tinyhumansai#4995 added a flows-gated #[tokio::test] to src/openhuman/composio/action_tool.rs but did not add the file to the EXPECTED allowlist in the rust-feature-gate-smoke lane's gated-test guard. The guard therefore fails on every PR branched off post-tinyhumansai#4995 main ('Gated-test file set changed. > openhuman/composio/action_tool.rs'), blocking otherwise-green PRs (tinyhumansai#5064, tinyhumansai#5066, tinyhumansai#5067). The test is properly #[cfg(feature = "flows")]-gated, so it compiles out in the gates-off build and cannot carry a tinyhumansai#5022-class ungated-assert regression — hence the allowlist entry only, no scoped 'cargo test' filter change. Verified the guard's EXPECTED now matches ACTUAL exactly.
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 9 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
Comment |
Summary
Merged #4995 added a
#[cfg(feature = "flows")]#[tokio::test]tosrc/openhuman/composio/action_tool.rsbut did not add that file to the EXPECTED allowlist in therust-feature-gate-smokelane's "Guard — new feature-gated test modules must be acknowledged" step (.github/workflows/ci-lite.yml).As a result the guard fails on every PR branched off post-#4995 main:
This currently blocks otherwise-green PRs #5064, #5066, #5067 (and any future recent-base PR). PRs on an older base (e.g. #4998) are unaffected.
Fix
Add
openhuman/composio/action_tool.rsto the EXPECTED allowlist — one line.The test is properly
#[cfg(feature = "flows")]-gated, so it compiles out entirely in the gates-off build and cannot carry a #5022-class ungated-assert regression. Per the guard's own guidance that means an allowlist entry only — no change to the scopedcargo testfilter is needed.Verification
Ran the guard's own
EXPECTEDvsACTUALdiff locally with this change applied: they match exactly (gate-contract test coverage allowlist is current). No source/behaviour change — CI-config only.Related
48cba1a02)