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

Class TestSuiteReport

testing/test_runner.py:40–50  ·  view source on GitHub ↗

Comprehensive test suite execution report.

Source from the content-addressed store, hash-verified

38
39@dataclass
40class TestSuiteReport:
41 """Comprehensive test suite execution report."""
42 total_tests: int
43 passed: int
44 failed: int
45 skipped: int
46 errors: int
47 total_duration: float
48 parallel_workers: int
49 results: List[TestResult]
50 performance_summary: Dict[str, float]
51
52class TestRunner:
53 """Advanced test runner with parallel execution and performance tracking."""

Callers 1

parse_test_resultsMethod · 0.85

Calls

no outgoing calls

Tested by 1

parse_test_resultsMethod · 0.68