diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-25 12:52:13 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-25 12:59:09 +0200 |
commit | e02b5469f0ade144f0c6712d95eb4999a69b66b6 (patch) | |
tree | c04e47f068b54645944c8228bbd3a18549b61a62 /tests/unit | |
parent | ea0f4346b13527c601bfcfb1f5d17a13b3dfc15c (diff) | |
download | searxng-e02b5469f0ade144f0c6712d95eb4999a69b66b6.tar.gz searxng-e02b5469f0ade144f0c6712d95eb4999a69b66b6.zip |
[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 <markus.heiser@darmarit.de>
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/__init__.py | 6 | ||||
-rw-r--r-- | tests/unit/settings/test_settings.yml | 5 |
2 files changed, 11 insertions, 0 deletions
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') diff --git a/tests/unit/settings/test_settings.yml b/tests/unit/settings/test_settings.yml new file mode 100644 index 000000000..a975c8739 --- /dev/null +++ b/tests/unit/settings/test_settings.yml @@ -0,0 +1,5 @@ +# This SearXNG setup is used in unit tests + +use_default_settings: true +search: + formats: [html, csv, json, rss] |