diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-10-30 16:12:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-30 16:12:57 +0000 |
| commit | 8f18c69f7ab387de18679b46c3d29365310b44d4 (patch) | |
| tree | c2fcc45ca5a7ff37b52f94eecedcff0968355c86 /manage | |
| parent | 46fde2e98e0fd55e947c3d9c1663f22e3d34bf1e (diff) | |
| parent | db6a4d13e7ebe08a5df4fe6f99b0ef87aac94cc8 (diff) | |
Merge pull request #446 from return42/searxng-brand
[brand] SearXNG environment variables & /utils scripts
Diffstat (limited to 'manage')
| -rwxr-xr-x | manage | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -33,7 +33,7 @@ while IFS= read -r line; do YAMLLINT_FILES+=("$line") done <<< "$(git ls-files './tests/*.yml' './searx/*.yml' './utils/templates/etc/searxng/*.yml')" -PYLINT_SEARX_DISABLE_OPTION="\ +PYLINT_SEARXNG_DISABLE_OPTION="\ I,C,R,\ W0105,W0212,W0511,W0603,W0613,W0621,W0702,W0703,W1401,\ E1136" @@ -70,7 +70,7 @@ py.: build : Build python packages at ./${PYDIST} clean : delete virtualenv and intermediate py files pyenv.: - install : developer install of searx into virtualenv + install : developer install of SearXNG into virtualenv uninstall : uninstall developer installation cmd ... : run command ... in virtualenv OK : test if virtualenv is OK @@ -620,13 +620,13 @@ test.pylint() { build_msg TEST "[pylint] searx/engines" python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ - --disable="${PYLINT_SEARX_DISABLE_OPTION}" \ + --disable="${PYLINT_SEARXNG_DISABLE_OPTION}" \ --additional-builtins="${PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES}" \ searx/engines build_msg TEST "[pylint] searx tests" python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ - --disable="${PYLINT_SEARX_DISABLE_OPTION}" \ + --disable="${PYLINT_SEARXNG_DISABLE_OPTION}" \ --ignore=searx/engines \ searx tests ) |