Comprehensive test analysis report.
| 58 | |
| 59 | @dataclass |
| 60 | class TestAnalysisReport: |
| 61 | """Comprehensive test analysis report.""" |
| 62 | timestamp: str |
| 63 | failure_patterns: List[FailurePattern] |
| 64 | coverage_gaps: List[CoverageGap] |
| 65 | performance_issues: List[PerformanceIssue] |
| 66 | flaky_tests: List[str] |
| 67 | test_health_score: float |
| 68 | recommendations: List[str] |
| 69 | |
| 70 | class TestAnalyzer: |
| 71 | """Advanced test analyzer with pattern recognition and recommendations.""" |