Skip to content

Commit

Permalink
Exclude from test_frame_jacobians the frames that are not loaded in…
Browse files Browse the repository at this point in the history
… KynDynComputations
  • Loading branch information
xela-95 committed May 10, 2024
1 parent 3d42615 commit 52331b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_api_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,13 @@ def test_frame_jacobians(
for frame in model.description.get().frames
if frame.index is not None
# and frame.name == "l_forearm"
and frame.name in kin_dyn.frame_names()
]
frame_names = [
frame.name
for frame in model.description.get().frames
# if frame.name == "l_forearm"
if frame.name in kin_dyn.frame_names()
]

print(f"considered frames: {frame_names}")
Expand Down

0 comments on commit 52331b0

Please sign in to comment.