Skip to content

Commit 92e8ca3

Browse files
committed
Skip unnecessary test because of changing implementation
1 parent eb6066e commit 92e8ca3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

api_v1/tests/entry/test_api_search_chain.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import copy
22
import json
3-
from unittest import mock
3+
from unittest import mock, skip
44

55
from airone.lib.test import AironeViewTest
66
from airone.lib.types import AttrType
@@ -1326,6 +1326,10 @@ def test_search_backward_chain_exceeding_search_limit(self):
13261326
),
13271327
)
13281328

1329+
@skip("""
1330+
A situation that raises ElasticsearchException because of exceeding search count because of
1331+
installing workaround limitation cap won't be happened.
1332+
""")
13291333
def test_search_chain_when_result_exceeds_acceptable_count(self):
13301334
# Change configuration to test processing for acceptable result from elasticsearch
13311335
ENTRY_CONFIG.conf["SEARCH_CHAIN_ACCEPTABLE_RESULT_COUNT"] = 2

0 commit comments

Comments
 (0)