Skip to content

Commit

Permalink
TEST: Remove CI test-breaking stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
smb261-panda authored and jk-ethz committed Jan 25, 2023
1 parent 7ab6ee9 commit d7154f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
8 changes: 5 additions & 3 deletions moma_mission/demo/piloting.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,11 @@
"REACH_DETECTION_HOTSPOT_FAR",
NavigationState,
transitions={
"Completed": "REACH_DETECTION_HOTSPOT_MEDIUM"
if not sim
else "REACH_DETECTION_HOTSPOT_CLOSE",
# Use wholebody controller in sim
# "Completed": "REACH_DETECTION_HOTSPOT_MEDIUM"
# if not sim
# else "REACH_DETECTION_HOTSPOT_CLOSE",
"Completed": "REACH_DETECTION_HOTSPOT_MEDIUM",
"Failure": "REACH_DETECTION_HOTSPOT_FAR",
},
)
Expand Down
8 changes: 1 addition & 7 deletions moma_mission/src/moma_mission/missions/piloting/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

from moma_mission.core import StateMachineRos, StateRos
from moma_mission.missions.piloting.states import *
from moma_mission.states.path_visitor import PathVisitorState
from moma_mission.states.gripper import GripperControl, GripperGrasp
from moma_mission.states.manipulation import JointsConfigurationAction
from moma_mission.states.path_visitor import PathVisitorState


def homing_sequence_factory():
Expand All @@ -30,12 +30,6 @@ def homing_sequence_factory():
def object_placement_sequence_factory():
object_placement_sequence = StateMachineRos(outcomes=["Success", "Failure"])
with object_placement_sequence:
object_placement_sequence.add(
"HOVER_OBJECT",
PathVisitorState,
transitions={"Completed": "APPROACH_OBJECT", "Failure": "Failure"},
)

object_placement_sequence.add(
"APPROACH_OBJECT",
PathVisitorState,
Expand Down

0 comments on commit d7154f7

Please sign in to comment.