()
| 347 | |
| 348 | |
| 349 | def get_all_api_items(): |
| 350 | base_path = pathlib.Path(__file__).parent.parent |
| 351 | api_doc_fnames = pathlib.Path(base_path, "doc", "source", "reference") |
| 352 | for api_doc_fname in api_doc_fnames.glob("*.rst"): |
| 353 | with open(api_doc_fname, encoding="utf-8") as f: |
| 354 | yield from get_api_items(f) |
| 355 | |
| 356 | |
| 357 | def print_validate_all_results( |
no test coverage detected