File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -163,32 +163,3 @@ def test_ros2ari_connector_send_goal_erronous_callback(
163
163
finally :
164
164
connector .shutdown ()
165
165
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 )
You can’t perform that action at this time.
0 commit comments