Lines Matching full:jobs
28 Then, test domains (groups of jobs, tests) are built based on predefined data
56 Lastly, the collected jobs are executed and (optionally) tested, with
321 """Initialize the jobs container"""
322 self.jobs = []
330 The domain contains a set of jobs that enable one of the elements
333 If exclude is a regular expression, skip generated jobs whose description
348 self.jobs.append(job)
354 If exclude is a regular expression, skip generated jobs whose description
368 self.jobs.append(job)
373 each call adds respective jobs. The job array initialization is done once in
387 """A container for domains and jobs, used to structurize testing."""
440 self.jobs = {}
442 for job in domain.jobs:
443 self.jobs[job.name] = job
446 """Return the list of jobs identified by the given name.
449 return sorted(self.domains[name].jobs, key=lambda job: job.name)
451 return [self.jobs[name]]
466 """Run the desired jobs.
468 domains and jobs.
469 Run the jobs listed in options.tasks."""
473 jobs = []
477 jobs += domain_data.get_jobs(name)
480 for job in jobs:
530 parser.add_argument('--list-jobs',
531 help='List supported jobs and exit',
532 action='append_const', dest='list', const='jobs')