Merge pull request #2679 from AndresCdo/feature/add-error-exceptions

[feat] Update milvus_memory_test.py error log
pull/2877/head
Richard Beales 2023-04-22 06:43:53 +01:00 committed by GitHub
commit 780a77bb31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -68,5 +68,5 @@ try:
stats = self.memory.get_stats()
self.assertEqual(15, len(stats))
except:
print("Milvus not installed, skipping tests")
except ImportError as err:
print(f"Skipping tests for MilvusMemory: {err}")