Print pre-commit invoke

This commit is contained in:
Gabriel Augendre 2022-05-25 19:20:23 +02:00
parent 61c6c8974f
commit ea000a826f

View file

@ -40,7 +40,7 @@ def test_cov(ctx: Context) -> None:
@task
def pre_commit(ctx: Context) -> None:
with ctx.cd(BASE_DIR):
ctx.run("pre-commit run --all-files", pty=True)
ctx.run("pre-commit run --all-files", pty=True, echo=True)
@task