Skip to content

Commit 8bcf410

Browse files
committed
fixed some doctest skipping statements
1 parent 0ea8d3b commit 8bcf410

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/compas_fab/robots/robot.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,13 +1584,13 @@ def plan_cartesian_motion(
15841584
Examples
15851585
--------
15861586
1587-
>>> ros = RosClient() # doctest: +SKIP # doctest: +SKIP
1587+
>>> ros = RosClient() # doctest: +SKIP
15881588
>>> ros.run() # doctest: +SKIP
15891589
>>> robot = ros.load_robot() # doctest: +SKIP
1590-
>>> frames = [Frame([0.3, 0.1, 0.5], [1, 0, 0], [0, 1, 0]),\ # doctest: +SKIP
1591-
Frame([0.5, 0.1, 0.6], [1, 0, 0], [0, 1, 0])]
1590+
>>> frames = [Frame([0.3, 0.1, 0.5], [1, 0, 0], [0, 1, 0]),\
1591+
Frame([0.5, 0.1, 0.6], [1, 0, 0], [0, 1, 0])] # doctest: +SKIP
15921592
>>> start_configuration = Configuration.from_revolute_values([-0.042, 0.033, -2.174, 5.282, -1.528, 0.000]) # doctest: +SKIP
1593-
>>> group = robot.main_group_name # doctest: +SKIP
1593+
>>> group = robot.main_group_name
15941594
>>> options = {'max_step': 0.01,\
15951595
'jump_threshold': 1.57,\
15961596
'avoid_collisions': True} # doctest: +SKIP
@@ -1728,7 +1728,7 @@ def plan_motion(self, goal_constraints, start_configuration=None, group=None, op
17281728
17291729
Using position and orientation constraints:
17301730
1731-
>>> ros = RosClient() # doctest: +SKIP # doctest: +SKIP
1731+
>>> ros = RosClient() # doctest: +SKIP
17321732
>>> ros.run() # doctest: +SKIP
17331733
>>> robot = ros.load_robot() # doctest: +SKIP
17341734
>>> frame = Frame([0.4, 0.3, 0.4], [0, 1, 0], [0, 0, 1]) # doctest: +SKIP
@@ -1752,7 +1752,7 @@ def plan_motion(self, goal_constraints, start_configuration=None, group=None, op
17521752
17531753
Using joint constraints (to the UP configuration):
17541754
1755-
>>> ros = RosClient() # doctest: +SKIP # doctest: +SKIP
1755+
>>> ros = RosClient() # doctest: +SKIP
17561756
>>> ros.run() # doctest: +SKIP
17571757
>>> robot = ros.load_robot() # doctest: +SKIP
17581758
>>> configuration = Configuration.from_revolute_values([0.0, -1.5707, 0.0, -1.5707, 0.0, 0.0]) # doctest: +SKIP

0 commit comments

Comments
 (0)