8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b2a9f commit 423c4d6Copy full SHA for 423c4d6
scripts/test
@@ -1,12 +1,13 @@
1
#!/usr/bin/env sh
2
set -e
3
4
-export PREFIX="poetry run python -m "
+export PREFIX='poetry run python -m '
5
+export REGEX='^(?![.]|venv).*'
6
7
${PREFIX}pytest -n 3 --cov-report term-missing --cov-report=xml:coverage.xml --cov=commitizen tests/
8
${PREFIX}black commitizen tests --check
9
${PREFIX}isort --check-only commitizen tests
10
${PREFIX}flake8 commitizen/ tests/
11
${PREFIX}mypy commitizen/ tests/
-${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir="^(?![.]|venv).*"
12
+${PREFIX}pydocstyle --convention=google --add-ignore=D1,D415 --match-dir='"${REGEX}"'
13
${PREFIX}commitizen check --rev-range origin/master..
0 commit comments