Home | History | Annotate | Download | only in suite_scheduler

Lines Matching defs:Run

55     # avoid dependency on the installation of gsutil to run sanity check.
141 run_on: event_on which to run # Required
142 hour: integer of the hour to run, only applies to nightly. # Optional
148 By default, Tasks run on all release branches, not factory or firmware.
301 This will run test using latest build on firmware branch, and the latest
307 This will run test using latest build on firmware branch, and the latest
314 This will run test using latest ChromeOS and firmware RW build on ToT.
318 @param suite: the name of the suite to run, e.g. 'bvt'
326 @param boards: A comma separated list of boards to run this task on.
327 Default: Run on all boards.
342 @param hour: An integer specifying the hour that a nightly run should
344 @param day: An integer specifying the day of a week that a weekly run
467 """Name of the suite to run, e.g. 'bvt'."""
493 """The boards on which to run this suite.
574 @param board: the board against which to run self._suite.
606 @param board: the board against which to run self._suite.
625 """Query what hosts are able to run a test on a board and pool
630 @param board: the board against which one wants to run the test.
646 should be able to run, and it ends up not being scheduled, then
649 @return True if this test should be able to run, False otherwise.
654 def Run(self, scheduler, branch_builds, board, force=False, mv=None):
655 """Run this task. Returns False if it should be destroyed.
667 @param board: the board against which to run self._suite.
696 'required to run the suite.', self._name, board)
738 """A Task that can be run only once. Can schedule itself."""
741 def Run(self, scheduler, branch_builds, board, force=False, mv=None):
742 """Run this task. Returns False, indicating it should be destroyed.
744 Run this task. Attempt to schedule the associated suite.
753 @param board: the board against which to run self._suite.
760 super(OneShotTask, self).Run(scheduler, branch_builds, board, force,