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