summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-08-31 18:59:27 +0200
committerAlexandre Flament <alex@al-f.net>2020-08-31 19:00:06 +0200
commitb329058c1ad06fe9c1afd56c81e0ad27dbef06b8 (patch)
tree8cb271bcbcb15fbb65b27538203e3a2475871e26 /tests
parent315cdfee09cb34b0006daf76697f7d4f7cfba01d (diff)
Revert "[enh] test: load each engine to check for syntax errors"
This reverts commit 4fb3ed2c6335b68f6b28ebc68d5d22f2fd621648.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_engines.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/unit/test_engines.py b/tests/unit/test_engines.py
deleted file mode 100644
index 3f5f8dc80..000000000
--- a/tests/unit/test_engines.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import unittest2 as unittest
-from unittest2.util import strclass
-from searx.engines import load_engine
-from searx import settings
-
-
-class TestEngine(unittest.TestCase):
-
- def test_engines(self):
- for engine_data in settings['engines']:
- load_engine(engine_data)