Result from a single test case.
| 66 | |
| 67 | @dataclass |
| 68 | class 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 | |
| 82 | def build_test_matrix(driver: str) -> list[TestCase]: |