ePub doc builds should be less strict

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
Pedro Algarvio 2023-02-17 04:18:02 +00:00 committed by Pedro Algarvio
parent 8b24605c5d
commit a884a1a90e

View file

@ -82,7 +82,7 @@ def html(ctx: Context, no_clean: bool = False, archive: pathlib.Path = None):
def epub(ctx: Context, no_clean: bool = False):
if no_clean is False:
ctx.run("make", "clean", cwd="doc/", check=True)
ctx.run("make", "epub", "SPHINXOPTS=-W", cwd="doc/", check=True)
ctx.run("make", "epub", cwd="doc/", check=True)
@docs.command(