diff --git a/manage b/manage index 807b32d2a..7e7cb0d5f 100755 --- a/manage +++ b/manage @@ -45,8 +45,6 @@ GECKODRIVER_VERSION="v0.33.0" # SPHINXOPTS= BLACK_OPTIONS=("--target-version" "py311" "--line-length" "120" "--skip-string-normalization") BLACK_TARGETS=("--exclude" "(searx/static|searx/languages.py)" "--include" 'searxng.msg|\.pyi?$' "searx" "searxng_extra" "tests") -# add one or more engines, comma seperated, here to only test a subset of engines -INTEGRATION_ENGINES="google" _dev_redis_sock="/usr/local/searxng-redis/run/redis.sock" # set SEARXNG_REDIS_URL if it is not defined and "{_dev_redis_sock}" exists. diff --git a/tests/integration/test_engines.py b/tests/integration/test_engines.py index 72e987b4a..b77c43f07 100644 --- a/tests/integration/test_engines.py +++ b/tests/integration/test_engines.py @@ -16,9 +16,6 @@ logger.level = logging.INFO stream_handler = logging.StreamHandler(sys.stdout) logger.addHandler(stream_handler) -SAFESEARCH = 0 -PAGENO = 1 - def test_single_engine(app: Flask, engine_name: str) -> Tuple[str, Optional[Exception], int]: logger.debug(f'Testing Engine: {engine_name}')