diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-11-14 13:49:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-14 13:49:25 +0100 |
| commit | 6489a560ea9cbd8087f9872a8494f6d8ec76bf75 (patch) | |
| tree | bc7db62de06c7d78a58a5701d4b548f8090eb478 /Makefile | |
| parent | e1bd617669a3964b0faefa4e75faf4ed29eb319d (diff) | |
| parent | 5d015b58f7437d4974d9b073f4b041f8d7956a4b (diff) | |
Merge pull request #2299 from rachmadaniHaryono/feature/pep8-to-pycodestyle
pep8 to pycodestyle
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |