Post process test results and print test summary. There are some `required not match` in legacy test processor, but NOT exist in Xdoctest. When using the legacy processor, we can set test result to `skipped=True` and store the `not match` information in `extra_info`, then lo
(
self, test_results: list[TestResult], whl_error: list[str]
)
| 312 | raise NotImplementedError |
| 313 | |
| 314 | def print_summary( |
| 315 | self, test_results: list[TestResult], whl_error: list[str] |
| 316 | ) -> None: |
| 317 | """Post process test results and print test summary. |
| 318 | |
| 319 | There are some `required not match` in legacy test processor, but NOT exist in Xdoctest. |
| 320 | When using the legacy processor, we can set test result to `skipped=True` and store the `not match` information in `extra_info`, |
| 321 | then logging the `not match` in `print_summary`. |
| 322 | |
| 323 | Args: |
| 324 | test_results(list[TestResult]): test results generated from doctester. |
| 325 | whl_error(list[str]): wheel error when we extract apis from module. |
| 326 | """ |
| 327 | pass |
| 328 | |
| 329 | |
| 330 | def get_api_md5(path): |