summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2026-03-24 21:41:39 +0100
committerGitHub <noreply@github.com>2026-03-24 21:41:39 +0100
commitc52d23f262135aa672602a16e82fe940a8a843a8 (patch)
tree8f96f679a07a888b0c80be65eda24bd413b1d068 /tests
parentae4b73039fe216708f7e64edd2832ad5b9dc5741 (diff)
[fix] clean up and update python requirements (#5899)
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_toml.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/unit/test_toml.py b/tests/unit/test_toml.py
deleted file mode 100644
index 7a298502b..000000000
--- a/tests/unit/test_toml.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# SPDX-License-Identifier: AGPL-3.0-or-later
-# pylint: disable=missing-module-docstring,disable=missing-class-docstring,invalid-name
-
-from tests import SearxTestCase
-from searx import compat
-from searx.favicons.config import DEFAULT_CFG_TOML_PATH
-
-
-class CompatTest(SearxTestCase):
-
- def test_toml(self):
- with DEFAULT_CFG_TOML_PATH.open("rb") as f:
- _ = compat.tomllib.load(f)