Call regendoc tool to update examples and pytest output in the docs.
(version: str)
| 77 | |
| 78 | |
| 79 | def regen(version: str) -> None: |
| 80 | """Call regendoc tool to update examples and pytest output in the docs.""" |
| 81 | print(f"{Fore.CYAN}[generate.regen] {Fore.RESET}Updating docs") |
| 82 | check_call( |
| 83 | ["tox", "-e", "regen"], |
| 84 | env={**os.environ, "SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST": version}, |
| 85 | ) |
| 86 | |
| 87 | |
| 88 | def fix_formatting() -> None: |
no test coverage detected
searching dependent graphs…