From d5c7c667c4b16102259ca02aa4be63bc68a56a37 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Wed, 12 Jun 2024 21:54:34 +0200 Subject: [PATCH] Add qdrant test --- cognee/tests/test_qdrant.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cognee/tests/test_qdrant.py b/cognee/tests/test_qdrant.py index f35c46eb5..091a4f331 100644 --- a/cognee/tests/test_qdrant.py +++ b/cognee/tests/test_qdrant.py @@ -67,4 +67,10 @@ async def main(): search_results = await cognee.search("ADJACENT", {"query": "DefaultGraphModel__default_user"}) assert len(search_results) != 0, "The search results list is empty." - print("The search results list is not empty.") \ No newline at end of file + print("The search results list is not empty.") + + + +if __name__ == "__main__": + import asyncio + asyncio.run(main()) \ No newline at end of file