Skip to content

Commit

Permalink
removed outdated test
Browse files Browse the repository at this point in the history
  • Loading branch information
ichumuh committed Nov 28, 2024
1 parent 1b2d3db commit 146792a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions test/test_integration_pr2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,10 +1256,10 @@ def test_drive_into_apartment(self, apartment_setup: PR2TestWrapper):
add_monitor=False)
apartment_setup.execute()

def test_VelocityLimitUnreachableException(self, zero_pose: PR2TestWrapper):
zero_pose.set_prediction_horizon(prediction_horizon=7)
zero_pose.set_joint_goal(zero_pose.better_pose)
zero_pose.execute(expected_error_type=VelocityLimitUnreachableException)
# def test_VelocityLimitUnreachableException(self, zero_pose: PR2TestWrapper):
# zero_pose.set_prediction_horizon(prediction_horizon=7)
# zero_pose.set_joint_goal(zero_pose.better_pose)
# zero_pose.execute(expected_error_type=VelocityLimitUnreachableException)

def test_SetPredictionHorizon11(self, zero_pose: PR2TestWrapper):
default_prediction_horizon = god_map.qp_controller.prediction_horizon
Expand Down Expand Up @@ -3386,9 +3386,11 @@ def test_avoid_collision_box_between_cylinders(self, pocky_pose_setup: PR2TestWr
p = PoseStamped()
p.header.frame_id = pocky_pose_setup.r_tip
p.pose.position.x = 0.08
p.pose.orientation = Quaternion(*quaternion_about_axis(0.01, [1, 0, 0]).tolist())
pocky_pose_setup.add_box_to_world(name='box',
size=(0.2, 0.05, 0.05),
p.pose.orientation = Quaternion(*quaternion_about_axis(np.pi/2, [0, 1, 0]).tolist())
pocky_pose_setup.add_cylinder_to_world(name='box',
# size=(0.2, 0.05, 0.05),
height = 0.2,
radius=0.025,
parent_link=pocky_pose_setup.r_tip,
pose=p)
p = PoseStamped()
Expand Down

0 comments on commit 146792a

Please sign in to comment.