We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c199968 commit d27c36eCopy full SHA for d27c36e
tests/integration/test_async_search_index.py
@@ -8,6 +8,19 @@
8
9
fields = [{"name": "test", "type": "tag"}]
10
11
+# Remove deprecation warnings after the next major release
12
+pytestmark = [
13
+ pytest.mark.filterwarnings(
14
+ "ignore:connect\\(\\) is deprecated; pass connection parameters in __init__:DeprecationWarning"
15
+ ),
16
17
+ "ignore:Converting sync Redis client to async client is deprecated.*:DeprecationWarning"
18
19
20
+ "ignore:Function .* is deprecated and will be removed in the next major release.*:DeprecationWarning"
21
22
+]
23
+
24
25
@pytest.fixture
26
def index_schema():
0 commit comments