Home | History | Annotate | Download | only in base_definitions

Lines Matching defs:Setup

23     """An abstract class for defining environment setup job.
25 Usually such a job contains check -> setup -> cleanup workflow
30 to_setup: bool, whether or not to setup the defined environment
63 """Execute the check, setup, and cleanup.
65 Will execute setup and cleanup only if the boolean switches for them
90 return self.InternalCall(self.Setup)
196 def Setup(self):
199 Used to setup environment if check fail. Can be override by sub-class
201 self.note = "Setup step undefined."
207 Used to cleanup setup if check fail. Can be override by sub-class