summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2020-05-29 08:52:11 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2020-05-29 08:52:11 +0200
commitd44b4eda645446293cae664b8df823181a432c2e (patch)
tree7a046c3f261c4499f7b366e249529f4c93d41fdb /Makefile
parenta18760b322ba0006672b3d8f09362b407b39b4c1 (diff)
downloadsearxng-d44b4eda645446293cae664b8df823181a432c2e.tar.gz
searxng-d44b4eda645446293cae664b8df823181a432c2e.zip
[fix] gigablaste engine: switch from pep8 to pylint test
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index abd0eddb8..494ff401b 100644
--- a/Makefile
+++ b/Makefile
@@ -195,6 +195,7 @@ test.pylint: pyenvinstall
$(call cmd,pylint,\
searx/preferences.py \
searx/testing.py \
+ searx/engines/gigablast.py \
)
endif
@@ -204,7 +205,7 @@ endif
test.pep8: pyenvinstall
@echo "TEST pep8"
- $(Q)$(PY_ENV_ACT); pep8 --exclude=searx/static --max-line-length=120 --ignore "E402,W503" searx tests
+ $(Q)$(PY_ENV_ACT); pep8 --exclude='searx/static, searx/engines/gigablast.py' --max-line-length=120 --ignore "E402,W503" searx tests
test.unit: pyenvinstall
@echo "TEST tests/unit"