MCPcopy Create free account
hub / github.com/bhowiebkr/PyFlowGraph / TestResult

Class TestResult

testing/test_runner.py:31–37  ·  view source on GitHub ↗

Test execution result with performance metrics.

Source from the content-addressed store, hash-verified

29
30@dataclass
31class TestResult:
32 """Test execution result with performance metrics."""
33 name: str
34 status: str # PASS, FAIL, SKIP, ERROR
35 duration: float
36 category: str # unit, integration, gui, headless
37 error_message: Optional[str] = None
38
39@dataclass
40class TestSuiteReport:

Callers 1

parse_test_resultsMethod · 0.70

Calls

no outgoing calls

Tested by 1

parse_test_resultsMethod · 0.56