summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-05-18 17:23:21 +0200
committerAlexandre Flament <alex@al-f.net>2021-05-18 17:23:21 +0200
commitd1cffc55cb5421c6c56f54124ded202a3332a676 (patch)
tree74e831edd53602aecfea89e42f3544b89dc465fb
parentd255e5637b45a05d7a3b01d261affdcfc120b653 (diff)
downloadsearxng-d1cffc55cb5421c6c56f54124ded202a3332a676.tar.gz
searxng-d1cffc55cb5421c6c56f54124ded202a3332a676.zip
[fix] unit test: don't load /etc/searx/settings.yml
Add a new environment variable SEARX_DISABLE_ETC_SETTINGS to disable loading of /etc/searx/settings.yml unit tests: * set SEARX_DISABLE_ETC_SETTINGS to 1 * remove SEARX_SETTINGS_PATH if it exists
-rw-r--r--searx/settings_loader.py3
-rw-r--r--tests/__init__.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/searx/settings_loader.py b/searx/settings_loader.py
index cfdeb4d91..6beab59a1 100644
--- a/searx/settings_loader.py
+++ b/searx/settings_loader.py
@@ -40,6 +40,9 @@ def get_user_settings_path():
# enviroment variable SEARX_SETTINGS_PATH
return check_settings_yml(environ['SEARX_SETTINGS_PATH'])
+ if environ.get('SEARX_DISABLE_ETC_SETTINGS', '').lower() in ('1', 'true'):
+ return None
+
# if not, get it from searx code base or last solution from /etc/searx
return check_settings_yml('/etc/searx/settings.yml')
diff --git a/tests/__init__.py b/tests/__init__.py
index 18bf7cad8..cb43fc22a 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,2 +1,5 @@
import os
+
os.environ['SEARX_DEBUG'] = '1'
+os.environ['SEARX_DISABLE_ETC_SETTINGS'] = '1'
+os.environ.pop('SEARX_SETTINGS_PATH', None)