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" )