pulp_smash.exceptions¶
Location: Pulp Smash → API Documentation → pulp_smash.exceptions
Custom exceptions defined by Pulp Smash.
-
exception
pulp_smash.exceptions.BugStatusUnknownError¶ Bases:
ExceptionWe have encountered a bug whose status is unknown to us.
See
pulp_smash.selectorsfor more information on how bug statuses are used.
-
exception
pulp_smash.exceptions.BugTPRMissingError¶ Bases:
ExceptionWe have encountered a bug with no “Target Platform Release” field.
See
pulp_smash.selectorsfor more information.
-
exception
pulp_smash.exceptions.CallReportError¶ Bases:
ExceptionA call report contains an error.
For more information about pulp’s task handling, see Synchronous and Asynchronous Calls and Task Management.
-
exception
pulp_smash.exceptions.CalledProcessError(args_, returncode, stdout, stderr, *args, **kwargs)¶ Bases:
ExceptionIndicates a CLI process has a non-zero return code.
See
pulp_smash.cli.CompletedProcess()for more information.
-
exception
pulp_smash.exceptions.ConfigFileNotFoundError¶ Bases:
ExceptionWe cannot find the requested Pulp Smash configuration file.
See
pulp_smash.configfor more information on how configuration files are handled.
-
exception
pulp_smash.exceptions.ConfigFileSectionNotFoundError¶ Bases:
ExceptionWe cannot read the requested Pulp Smash configuration file section.
See
pulp_smash.configfor more information on how configuration files are handled.
-
exception
pulp_smash.exceptions.ConfigValidationError(message, *args, **kwargs)¶ Bases:
ExceptionThe configuration file has validation errors.
- See
pulp_smash.config.validate_config()for more information on how - configuration validation is handled.
- See
-
exception
pulp_smash.exceptions.NoKnownBrokerError¶ Bases:
ExceptionWe cannot determine the AMQP broker used by a system.
An “AMQP broker” is a tool such as RabbitMQ or Apache Qpid.
-
exception
pulp_smash.exceptions.NoKnownPackageManagerError¶ Bases:
ExceptionWe cannot determine the package manager used by a system.
A “package manager” is a tool such as
yumordnf.
-
exception
pulp_smash.exceptions.NoKnownServiceManagerError¶ Bases:
ExceptionWe cannot determine the service manager used by a system.
A “service manager” is a tool such as
systemctlorservice.
-
exception
pulp_smash.exceptions.NoRegistryClientError¶ Bases:
ExceptionWe cannot determine the registry client used by a system.
A “registry client” is a tool such as
podmanordocker.
-
exception
pulp_smash.exceptions.TaskReportError(msg, task, *args, **kwargs)¶ Bases:
ExceptionA task contains an error.
For more information about pulp’s task handling, see Synchronous and Asynchronous Calls and Task Management.
-
exception
pulp_smash.exceptions.TaskTimedOutError¶ Bases:
ExceptionWe timed out while polling a task and waiting for it to complete.
See
pulp_smash.api.poll_spawned_tasks()andpulp_smash.api.poll_task()for more information on how task polling is handled.