Call regendoc tool to update examples and pytest output in the docs.
(version)
| 62 | |
| 63 | |
| 64 | def regen(version): |
| 65 | """Call regendoc tool to update examples and pytest output in the docs.""" |
| 66 | print(f"{Fore.CYAN}[generate.regen] {Fore.RESET}Updating docs") |
| 67 | check_call( |
| 68 | ["tox", "-e", "regen"], |
| 69 | env={**os.environ, "SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST": version}, |
| 70 | ) |
| 71 | |
| 72 | |
| 73 | def fix_formatting(): |
no test coverage detected