From fbcb21b94641fc7d9ca758a922bd5625b11c4976 Mon Sep 17 00:00:00 2001 From: Stefano Fiorucci Date: Mon, 8 Apr 2024 10:25:18 +0200 Subject: [PATCH] pinecone - skip test_comparison_not_equal_with_dataframe (#647) --- integrations/pinecone/tests/test_filters.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integrations/pinecone/tests/test_filters.py b/integrations/pinecone/tests/test_filters.py index 4ef2c8fba..bb0855aa1 100644 --- a/integrations/pinecone/tests/test_filters.py +++ b/integrations/pinecone/tests/test_filters.py @@ -77,6 +77,9 @@ def test_not_operator(self, document_store, filterable_docs): ... @pytest.mark.skip(reason="Pinecone does not include null values in the result of the $ne operator") def test_comparison_not_equal(self, document_store, filterable_docs): ... + @pytest.mark.skip(reason="Pinecone does not include null values in the result of the $ne operator") + def test_comparison_not_equal_with_dataframe(self, document_store, filterable_docs): ... + @pytest.mark.skip( reason="Pinecone has inconsistent behavior with respect to other Document Stores with the $or operator" )