Merge branch 'pydocfix' into 'master'

🪐 fix pydoc link in hooks/pre-commit

See merge request fdroid/fdroidserver!1612
This commit is contained in:
Hans-Christoph Steiner 2025-03-12 09:17:58 +00:00
commit 864ccb560b

View file

@ -91,7 +91,7 @@ if [ "$PY_FILES $PY_TEST_FILES" != " " ]; then
err "pyflakes tests failed!"
fi
# ignore vendored files
if ! $PYDOCSTYLE --match='(?!apksigcopier|looseversion).*\.py' $PY_FILES $PY_TEST_FILES; then
if ! $PYDOCSTYLE --match='(?!apksigcopier|looseversion|setup|test_).*\.py' $PY_FILES $PY_TEST_FILES; then
err "pydocstyle tests failed!"
fi
fi