mirror of
https://github.com/searxng/searxng.git
synced 2024-11-04 20:30:11 +01:00
Merge pull request #2299 from rachmadaniHaryono/feature/pep8-to-pycodestyle
pep8 to pycodestyle
This commit is contained in:
commit
6489a560ea
6
Makefile
6
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"
|
||||
|
@ -1,7 +1,7 @@
|
||||
mock==2.0.0
|
||||
nose2[coverage_plugin]==0.9.2
|
||||
cov-core==1.15.0
|
||||
pep8==1.7.0
|
||||
pycodestyle==2.6.0
|
||||
pylint==2.4.4
|
||||
plone.testing==5.0.0
|
||||
splinter==0.11.0
|
||||
|
Loading…
Reference in New Issue
Block a user