Collect the commands and paths to include in our docs.
()
| 56 | |
| 57 | |
| 58 | def doc_all_dirs(): |
| 59 | """Collect the commands and paths to include in our docs.""" |
| 60 | tools = [] |
| 61 | for root, _, files in os.walk('docs/builtins'): |
| 62 | tools.extend(doc_dir(root, files, os.path.relpath(root, 'docs/builtins'))) |
| 63 | for root, _, files in os.walk('docs/plugins'): |
| 64 | tools.extend(doc_dir(root, files, os.path.relpath(root, 'docs/plugins'))) |
| 65 | for root, _, files in os.walk('scripts/docs'): |
| 66 | tools.extend(doc_dir(root, files, os.path.relpath(root, 'scripts/docs'))) |
| 67 | return tuple(tools) |
| 68 | |
| 69 | |
| 70 | def write_tool_docs(): |
no test coverage detected