lmtest.notifications package

Submodules

lmtest.notifications.console_notifier module

Module containing methods for producing notifications via standard out.

class lmtest.notifications.console_notifier.ConsoleNotifier[source]

Bases: object

Emit notifications to the console.

static notify_failure(message)[source]

Emit a notification of failure.

Parameters

message (str) – A notification message to emit.

static notify_report(message)[source]

Emit a report notification.

Parameters

message (str) – A notification message to emit.

static notify_warning(message)[source]

Emit a notification of warning.

Parameters

message (str) – A notification message to emit.

lmtest.notifications.log_notifier module

Module containing methods for producing notifications via a logger.

class lmtest.notifications.log_notifier.LogNotifier(log_filename)[source]

Bases: object

Emit notifications to a log.

notify_failure(message)[source]

Emit a notification of failure.

Parameters

message (str) – A notification message to emit.

notify_report(message)[source]

Emit a report notification.

Parameters

message (str) – A notification message to emit.

notify_warning(message)[source]

Emit a notification of warning.

Parameters

message (str) – A notification message to emit.

Module contents

lmtest notifications package.