Lines Matching refs:jobs
14 Then, test domains (groups of jobs, tests) are built based on predefined data
42 Lastly, the collected jobs are executed and (optionally) tested, with
313 """Initialize the jobs container"""
314 self.jobs = []
322 The domain contains a set of jobs that enable one of the elements
325 If exclude is a regular expression, skip generated jobs whose description
340 self.jobs.append(job)
346 If exclude is a regular expression, skip generated jobs whose description
360 self.jobs.append(job)
365 each call adds respective jobs. The job array initialization is done once in
379 """A container for domains and jobs, used to structurize testing."""
433 self.jobs = {}
435 for job in domain.jobs:
436 self.jobs[job.name] = job
439 """Return the list of jobs identified by the given name.
442 return sorted(self.domains[name].jobs, key=lambda job: job.name)
444 return [self.jobs[name]]
459 """Run the desired jobs.
461 domains and jobs.
462 Run the jobs listed in options.tasks."""
466 jobs = []
470 jobs += domain_data.get_jobs(name)
473 for job in jobs:
523 parser.add_argument('--list-jobs',
524 help='List supported jobs and exit',
525 action='append_const', dest='list', const='jobs')