TestRunStatus#

class omni.kit.test.TestRunStatus(
value,
names=<not given>,
*values,
module=None,
qualname=None,
type=None,
start=1,
boundary=None,
)#

Bases: Enum

Enumeration that defines the possible statuses for test run execution.

This enumeration provides four statuses: UNKNOWN, RUNNING, PASSED, and FAILED. UNKNOWN indicates that the test status is either not defined or has not yet been set. RUNNING indicates that the test is currently in progress. PASSED represents that the test has executed successfully, while FAILED indicates that the test did not complete successfully.

This enum is used to standardize test status reporting across the system.

Attributes

UNKNOWN

RUNNING

PASSED

FAILED

__init__(*args, **kwds)#