1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 18:21:14 +00:00

framework/execution: Add basic docstring for Runner class

This commit is contained in:
Brendan Jackman 2017-12-06 14:46:23 +00:00 committed by marcbonnici
parent e3ae7fc906
commit f935c48d47

View File

@ -353,7 +353,11 @@ class Executor(object):
class Runner(object): class Runner(object):
""" """
Triggers running jobs and processing results
Takes pre-initialized ExcecutionContext and ProcessorManager. Handles
actually running the jobs, and triggers the ProcessorManager to handle
processing job and run results.
""" """
def __init__(self, context, pm): def __init__(self, context, pm):