From e02b5469f0ade144f0c6712d95eb4999a69b66b6 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 25 Jul 2021 12:52:13 +0200 Subject: [mod] use tests/unit/settings/test_settings.yml in unit tests In unit tests settings from searx/settings.yml and the user settings from: unit/settings/test_settings.yml are used. In the latter, settings can be activated that are needed in the unit test but should not activated by default in production. Signed-off-by: Markus Heiser --- tests/unit/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/unit/__init__.py') diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index e69de29bb..8266c675a 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -0,0 +1,6 @@ +import os +from os.path import dirname, sep, abspath + +# In unit tests the user settings from unit/settings/test_settings.yml are used. +os.environ['SEARX_SETTINGS_PATH'] = abspath( + dirname(__file__) + sep + 'settings' + sep + 'test_settings.yml') -- cgit v1.2.3