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

Class TestResult

ci/autoresearch/driver_sweep.py:68–79  ·  view source on GitHub ↗

Result from a single test case.

Source from the content-addressed store, hash-verified

66
67@dataclass
68class TestResult:
69 """Result from a single test case."""
70
71 test_case: TestCase
72 passed: bool
73 success: bool # RPC call succeeded
74 error: str | None = None
75 total_tests: int = 0
76 passed_tests: int = 0
77 duration_ms: int = 0
78 show_duration_ms: int = 0
79 raw_response: dict[str, Any] | None = None
80
81
82def build_test_matrix(driver: str) -> list[TestCase]:

Callers 1

run_sweepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected