Represents a test performance issue.
| 49 | |
| 50 | @dataclass |
| 51 | class PerformanceIssue: |
| 52 | """Represents a test performance issue.""" |
| 53 | test_name: str |
| 54 | duration: float |
| 55 | category: str |
| 56 | bottleneck_type: str # SETUP, EXECUTION, TEARDOWN |
| 57 | optimization_suggestion: str |
| 58 | |
| 59 | @dataclass |
| 60 | class TestAnalysisReport: |
no outgoing calls