Skip to content

Commit 955d110

Browse files
authored
Re-enables UR10e with Robotiq gripper tests (#4354)
# Description Reverting to runs skipped tests which should pass with the updates UR10e USD that does not have references to internal nucleus assets. Reverts this PR partly #4316.
1 parent fff02e6 commit 955d110

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

source/isaaclab/test/sim/test_utils_prims.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ def test_select_usd_variants():
424424
assert variant_set.GetVariantSelection() == "red"
425425

426426

427-
@pytest.mark.skip(reason="The USD asset seems to have some issues.")
428427
def test_select_usd_variants_in_usd_file():
429428
"""Test select_usd_variants() function in USD file."""
430429
stage = sim_utils.get_current_stage()

source/isaaclab_assets/isaaclab_assets/robots/universal_robots.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,7 @@
126126
"""Configuration of UR10 arm with short suction gripper."""
127127

128128
UR10e_ROBOTIQ_GRIPPER_CFG = UR10e_CFG.copy()
129-
"""Configuration of UR10e arm with Robotiq_2f_140 gripper.
130-
131-
FIXME: Something is wrong with selecting the variant for the Robotiq_2f_140 gripper.
132-
Even when tried on Isaac Sim GUI, the variant is not selected correctly.
133-
"""
129+
"""Configuration of UR10e arm with Robotiq_2f_140 gripper."""
134130
UR10e_ROBOTIQ_GRIPPER_CFG.spawn.variants = {"Gripper": "Robotiq_2f_140"}
135131
UR10e_ROBOTIQ_GRIPPER_CFG.spawn.rigid_props.disable_gravity = True
136132
UR10e_ROBOTIQ_GRIPPER_CFG.init_state.joint_pos["finger_joint"] = 0.0

source/isaaclab_assets/test/test_valid_configs.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ def registered_entities():
3333
# inspect all classes from the module
3434
for obj_name in dir(lab_assets):
3535
obj = getattr(lab_assets, obj_name)
36-
# FIXME: skip UR10e_ROBOTIQ_GRIPPER_CFG since it is not a valid configuration
37-
# Something has gone wrong with the recent Nucleus update.
38-
if obj_name == "UR10e_ROBOTIQ_GRIPPER_CFG":
39-
continue
4036
# store all registered entities configurations
4137
if isinstance(obj, AssetBaseCfg):
4238
registered_entities[obj_name] = obj

0 commit comments

Comments
 (0)