mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
fix errors in pre-commit hook when run in test suite
This commit is contained in:
parent
8489047bcf
commit
dfca237329
1 changed files with 3 additions and 3 deletions
|
@ -83,13 +83,13 @@ else
|
||||||
err "pep8 is not installed!"
|
err "pep8 is not installed!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z $PY_FILES $PY_TEST_FILES ]; then
|
if [ "$PY_FILES $PY_TEST_FILES" != " " ]; then
|
||||||
if ! $PYFLAKES $PY_FILES $PY_TEST_FILES; then
|
if ! $PYFLAKES $PY_FILES $PY_TEST_FILES; then
|
||||||
err "pyflakes tests failed!"
|
err "pyflakes tests failed!"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -z $PY_FILES ]; then
|
if [ "$PY_FILES" != "" ]; then
|
||||||
if ! $PEP8 --ignore=$PEP8_IGNORE $PY_FILES; then
|
if ! $PEP8 --ignore=$PEP8_IGNORE $PY_FILES; then
|
||||||
err "pep8 tests failed!"
|
err "pep8 tests failed!"
|
||||||
fi
|
fi
|
||||||
|
@ -98,7 +98,7 @@ fi
|
||||||
# The tests use a little hack in order to cleanly import the fdroidserver
|
# The tests use a little hack in order to cleanly import the fdroidserver
|
||||||
# package locally like a regular package. pep8 doesn't see that, so this
|
# package locally like a regular package. pep8 doesn't see that, so this
|
||||||
# makes pep8 skip E402 on the test files that need that hack.
|
# makes pep8 skip E402 on the test files that need that hack.
|
||||||
if [ ! -z $PY_TEST_FILES ]; then
|
if [ "$PY_TEST_FILES" != "" ]; then
|
||||||
if ! $PEP8 --ignore=$PEP8_IGNORE,E402 $PY_TEST_FILES; then
|
if ! $PEP8 --ignore=$PEP8_IGNORE,E402 $PY_TEST_FILES; then
|
||||||
err "pep8 tests failed!"
|
err "pep8 tests failed!"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue