test: pin Drake backend in manipulation integration suite#3192
Open
TomCC7 wants to merge 1 commit into
Open
Conversation
TomCC7
requested review from
Dreamsorcerer,
leshy,
mustafab0,
paul-nechifor and
spomichter
as code owners
July 25, 2026 22:50
Contributor
Greptile SummaryPins the manipulation integration fixture to its intended planning stack.
Confidence Score: 5/5The PR appears safe to merge. The fixture uses accepted backend and planner values, their combination is explicitly supported, and the tests that instantiate it are already guarded when Drake is unavailable. Important Files Changed
Reviews (1): Last reviewed commit: "test: pin Drake manipulation integration..." | Re-trigger Greptile |
TomCC7
enabled auto-merge
July 25, 2026 22:52
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #3192 +/- ##
==========================================
+ Coverage 73.75% 74.20% +0.44%
==========================================
Files 1109 1109
Lines 104386 104386
Branches 9568 9568
==========================================
+ Hits 76995 77459 +464
+ Misses 24699 24160 -539
- Partials 2692 2767 +75
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 28 files with indirect coverage changes 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution path
Problem
The manipulation integration suite describes and gates itself as a Drake test, but it relied on
ManipulationModuledefaults. After #3155 changed those defaults to RoboPlan, the suite began constructing a native RoboPlan scene and reproducibly segfaulted in the experimental macOS self-hosted job.Solution
Pin the shared integration fixture to the Drake world backend and RRT-Connect planner. This restores the suite's documented backend and retains its macOS coverage without changing production defaults, CI markers, or RoboPlan.
How to Test
uv run pytest dimos/manipulation/test_manipulation_module.py -m self_hostedThe file collects successfully in the development environment. Its 12 integration tests skip locally because
pydrakeis unavailable; the macOS self-hosted runner has Drake and exercises the suite.Ruff check, Ruff format check, and
git diff --checkpass.AI assistance
Codex with GPT-5 diagnosed the regression, implemented the test fixture change, and ran the reported validation.
Checklist