From 4a187d41be33636d92552c68a591ee6d57257737 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Fri, 7 May 2021 10:57:55 +0200 Subject: [PATCH] [fix] fix KeyError: 'ipv6' tests/units/network/test_network.py requires a call to searx.network.network.initialize Depending of the test order execution, this function was sometimes call in another test, sometimes not. This commit ensure there is a call to initialize() --- tests/unit/network/test_network.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/unit/network/test_network.py b/tests/unit/network/test_network.py index 246dfd85..e8d33240 100644 --- a/tests/unit/network/test_network.py +++ b/tests/unit/network/test_network.py @@ -4,12 +4,15 @@ from mock import patch import httpx -from searx.network.network import Network, NETWORKS +from searx.network.network import Network, NETWORKS, initialize from searx.testing import SearxTestCase class TestNetwork(SearxTestCase): + def setUp(self): + initialize() + def test_simple(self): network = Network()