Build documentation
(context: Context, docker: bool = False)
| 167 | |
| 168 | @task |
| 169 | def docs(context: Context, docker: bool = False): |
| 170 | """Build documentation""" |
| 171 | if docker: |
| 172 | _docker_docs(context) |
| 173 | else: |
| 174 | _live_docs(context) |
| 175 | |
| 176 | |
| 177 | def _docker_docs(context: Context) -> None: |
nothing calls this directly
no test coverage detected