We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf8ff0a + fdc7a91 commit f6def2eCopy full SHA for f6def2e
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "maestro-knowledge"
3
-version = "0.9.0"
+version = "0.10.0"
4
description = "Add your description here"
5
readme = "README.md"
6
requires-python = ">=3.11"
tests/test_vector_db_milvus.py
@@ -629,6 +629,7 @@ async def test_get_document_document_not_found(
629
630
@pytest.mark.asyncio
631
@patch("pymilvus.AsyncMilvusClient")
632
+ @pytest.mark.filterwarnings("ignore:Failed to connect to Milvus")
633
async def test_get_document_no_client(self, mock_milvus_client: AsyncMock) -> None:
634
"""Test getting a document when client is not available."""
635
mock_milvus_client.side_effect = Exception("Connection failed")
0 commit comments