buildtest.executors.base

BuildExecutor: manager for test executors

Module Contents

Classes

BaseExecutor

The BaseExecutor is an abstract base class for all executors.

class buildtest.executors.base.BaseExecutor(name, settings, site_configs, timeout=None)[source]

The BaseExecutor is an abstract base class for all executors.

Initiate a base executor, meaning we provide a name (also held by the BuildExecutor base that holds it) and the loaded dictionary of config opts to parse.

Parameters
  • name (str) – name of executor

  • setting (dict) – setting for a given executor defined in configuration file

  • site_configs (buildtest.config.SiteConfiguration) – Instance of SiteConfiguration class

  • timeout (str, optional) – Test timeout in number of seconds

type = 'base'
add_builder(builder)[source]

Add builder object to self.builders only if its of type BuilderBase

get_builder()[source]

Return a list of builders

load()[source]

Load a particular configuration based on the name. This method should set defaults for the executor, and will vary based on the class.

run()[source]

The run step basically runs the build. This is run after setup so we are sure that the builder is defined. This is also where we set the result to return.

__str__()[source]

Return str(self).

__repr__()[source]

Return repr(self).