MCPcopy Create free account
hub / github.com/FastLED/FastLED / TestExecutionFailedException

Class TestExecutionFailedException

ci/util/test_exceptions.py:90–98  ·  view source on GitHub ↗

Exception for test execution failures

Source from the content-addressed store, hash-verified

88
89
90class TestExecutionFailedException(FastLEDTestException):
91 """Exception for test execution failures"""
92
93 def __init__(
94 self,
95 message: str = "Test execution failed",
96 failures: Optional[list[TestFailureInfo]] = None,
97 ):
98 super().__init__(message, failures)
99
100
101class TestTimeoutException(FastLEDTestException):

Callers 6

mainFunction · 0.90
_run_parallelMethod · 0.90
_process_active_testsMethod · 0.90
_run_sequentialMethod · 0.90

Calls

no outgoing calls

Tested by 2

mainFunction · 0.72