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

Class TestResult

ci/run_tests.py:36–44  ·  view source on GitHub ↗

Result of a test execution

Source from the content-addressed store, hash-verified

34
35@dataclass
36class TestResult:
37 """Result of a test execution"""
38
39 name: str
40 success: bool
41 duration: float
42 output: str
43 captured_lines: list[str] = field(default_factory=lambda: [])
44 return_code: Optional[int] = None
45
46
47@dataclass

Callers 2

run_testFunction · 0.70
mainFunction · 0.70

Calls

no outgoing calls

Tested by 2

run_testFunction · 0.56
mainFunction · 0.56