diff --git a/libs/partners/pinecone/tests/integration_tests/test_vectorstores.py b/libs/partners/pinecone/tests/integration_tests/test_vectorstores.py index 8ccf441db5f91..3abdabe256a8c 100644 --- a/libs/partners/pinecone/tests/integration_tests/test_vectorstores.py +++ b/libs/partners/pinecone/tests/integration_tests/test_vectorstores.py @@ -211,7 +211,8 @@ def test_add_documents_with_ids( assert ( index_stats["namespaces"][NAMESPACE_NAME]["vector_count"] == len(texts) * 2 ) - assert index_stats["total_vector_count"] == len(texts) * 2 + # only focused on this namespace now + # assert index_stats["total_vector_count"] == len(texts) * 2 @pytest.mark.xfail(reason="relevance score just over 1") def test_relevance_score_bound(self, embedding_openai: OpenAIEmbeddings) -> None: