(report: TestReport)
| 343 | |
| 344 | |
| 345 | def pytest_report_to_serializable(report: TestReport) -> dict[str, Any] | None: |
| 346 | if isinstance(report, SubtestReport): |
| 347 | return report._to_json() |
| 348 | return None |
| 349 | |
| 350 | |
| 351 | def pytest_report_from_serializable(data: dict[str, Any]) -> SubtestReport | None: |
no test coverage detected