Home | History | Annotate | Download | only in skylab_suite

Lines Matching refs:test_specs

35 def run(client, test_specs, suite_handler, dry_run=False):
39 @param test_specs: A list of cros_suite.TestSpec objects.
46 _resume_suite(client, test_specs, suite_handler, dry_run)
49 _run_suite(test_specs, suite_handler, dry_run)
52 def _resume_suite(client, test_specs, suite_handler, dry_run=False):
58 test_specs, suite_handler, all_tasks)
60 logging.info('Not yet scheduled test_specs: %r', not_yet_scheduled)
67 def _get_unscheduled_test_specs(test_specs, suite_handler, all_tasks):
69 for test_spec in test_specs:
117 def _run_suite(test_specs, suite_handler, dry_run=False):
123 _create_test_tasks(test_specs, suite_handler, suite_id, dry_run)
130 def _create_test_tasks(test_specs, suite_handler, suite_id, dry_run=False):
137 @param test_specs: A list of cros_suite.TestSpec objects to schedule.
139 test_specs' progress.
141 these to-be-scheduled test_specs.
144 for test_spec in test_specs: