Skip to content

Commit

Permalink
Keep skipping test thanks to yo boy Iron
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Oct 1, 2024
1 parent 5ed480a commit fea1eaa
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def test_advertise_action(self):
)
self.advertise.advertise_action(advertise_msg)

@unittest.skipIf(os.environ.get("ROS_DISTRO") == "iron", "This test fails on Iron")
@unittest.skip(
reason="Currently fails in Iron due to https://github.com/ros2/rclpy/issues/1195. Unskip when Iron is EOL in Nov 2024."
)
def test_execute_advertised_action(self):
# Advertise the action
action_path = "/fibonacci_action_2"
Expand Down Expand Up @@ -204,7 +206,9 @@ def test_execute_advertised_action(self):
self.assertEqual(self.received_message["values"]["sequence"], [0, 1, 1, 2, 3, 5])
self.assertEqual(self.received_message["status"], GoalStatus.STATUS_SUCCEEDED)

@unittest.skipIf(os.environ.get("ROS_DISTRO") == "iron", "This test fails on Iron")
@unittest.skip(
reason="Currently fails in due to https://github.com/ros2/rclpy/issues/1195, need to fix this"
)
def test_cancel_advertised_action(self):
# Advertise the action
action_path = "/fibonacci_action_3"
Expand Down

0 comments on commit fea1eaa

Please sign in to comment.