summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2eeff8535..7bd0d8662 100644
--- a/Makefile
+++ b/Makefile
@@ -235,9 +235,9 @@ test.sh:
shellcheck -x .config.sh
test.pep8: pyenvinstall
- @echo "TEST pep8"
- $(Q)$(PY_ENV_ACT); pep8 --exclude='searx/static, searx/languages.py, searx/engines/gigablast.py' \
- --max-line-length=120 --ignore "E402,W503" searx tests
+ @echo "TEST pycodestyle (formerly pep8)"
+ $(Q)$(PY_ENV_ACT); pycodestyle --exclude='searx/static, searx/languages.py, searx/engines/gigablast.py' \
+ --max-line-length=120 --ignore "E117,E252,E402,E722,E741,W503,W504,W605" searx tests
test.unit: pyenvinstall
@echo "TEST tests/unit"