diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-06 19:50:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-06 19:50:58 +0200 |
| commit | 17e739a8596c7ba2e4addccb66753e3d591f424d (patch) | |
| tree | f19342941a9e790d39d62553a830e83fea41e478 /manage | |
| parent | a26e4eff10b8ed41d7012390d4efc575b9da8eb0 (diff) | |
| parent | aecfb2300d2515ee5bb28058d4fb11b8fe5c3f04 (diff) | |
Merge pull request #296 from return42/engine-logger
one logger per engine
Diffstat (limited to 'manage')
| -rwxr-xr-x | manage | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,7 +37,7 @@ PYLINT_SEARX_DISABLE_OPTION="\ I,C,R,\ W0105,W0212,W0511,W0603,W0613,W0621,W0702,W0703,W1401,\ E1136" -PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES="supported_languages,language_aliases" +PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES="supported_languages,language_aliases,logger" PYLINT_OPTIONS="-m pylint -j 0 --rcfile .pylintrc" help() { @@ -588,6 +588,7 @@ test.pylint() { ( set -e build_msg TEST "[pylint] \$PYLINT_FILES" pyenv.cmd python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ + --additional-builtins="${PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES}" \ "${PYLINT_FILES[@]}" build_msg TEST "[pylint] searx/engines" |