Skip to content

Commit 7ca87dd

Browse files
authored
chore: remove skipped test (#392)
1 parent 1455379 commit 7ca87dd

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

tests/communication/ros2/test_connectors.py

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -163,32 +163,3 @@ def test_ros2ari_connector_send_goal_erronous_callback(
163163
finally:
164164
connector.shutdown()
165165
shutdown_executors_and_threads(executors, threads)
166-
167-
168-
@pytest.mark.skip(
169-
reason="""
170-
This test does not allow pytest to exit.
171-
TODO: Decide whether still working callbacks should
172-
be cancelled when shutting down"""
173-
)
174-
def test_ros2ari_connector_send_goal_blocking_callback(
175-
ros_setup: None, request: pytest.FixtureRequest
176-
):
177-
action_name = f"{request.node.originalname}_action" # type: ignore
178-
action_server = ActionServer(action_name)
179-
executors, threads = multi_threaded_spinner([action_server])
180-
connector = ROS2ARIConnector()
181-
try:
182-
message = ROS2ARIMessage(
183-
payload={},
184-
metadata={"msg_type": "nav2_msgs/action/NavigateToPose"},
185-
)
186-
handle = connector.start_action(
187-
action_data=message,
188-
target=action_name,
189-
on_feedback=lambda feedback: time.sleep(100),
190-
)
191-
assert handle is not None
192-
finally:
193-
connector.shutdown()
194-
shutdown_executors_and_threads(executors, threads)

0 commit comments

Comments
 (0)