From 54a438fea3d16741b91055c1edfa0421bd8991cd Mon Sep 17 00:00:00 2001 From: matteo_fiore Date: Wed, 6 Oct 2021 08:59:20 +0200 Subject: [PATCH] fix(scripts/test): excluding venv folder from pydocstyle checks --- scripts/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test b/scripts/test index 08c54035dc..4a0e2dc15d 100755 --- a/scripts/test +++ b/scripts/test @@ -10,4 +10,4 @@ ${PREFIX}black commitizen tests --check ${PREFIX}isort --check-only commitizen tests ${PREFIX}flake8 commitizen/ tests/ ${PREFIX}mypy commitizen/ tests/ -${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 +${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir='^(?!venv|[\.]).*'