Information about a single test failure
| 8 | |
| 9 | @dataclass |
| 10 | class TestFailureInfo: |
| 11 | """Information about a single test failure""" |
| 12 | |
| 13 | test_name: str |
| 14 | command: str |
| 15 | return_code: int |
| 16 | output: str |
| 17 | error_type: str = "test_failure" |
| 18 | |
| 19 | |
| 20 | class FastLEDTestException(Exception): |
no outgoing calls