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

Class TestLogEntry

ci/meson/testlog_parser.py:13–20  ·  view source on GitHub ↗

Parsed test log entry from testlog.txt

Source from the content-addressed store, hash-verified

11
12@dataclass
13class TestLogEntry:
14 """Parsed test log entry from testlog.txt"""
15
16 test_name: str
17 result: str # "exit status 0" or "exit status 1", etc.
18 duration: str
19 stdout: str
20 stderr: str
21
22
23def parse_testlog(testlog_path: Path) -> list[TestLogEntry]:

Callers 1

parse_testlogFunction · 0.85

Calls

no outgoing calls

Tested by 1

parse_testlogFunction · 0.68