cognee/tests/import_test.py
2024-06-12 22:32:13 +02:00

7 lines
197 B
Python

def test_import_cognee():
try:
import cognee
assert True # Pass the test if no error occurs
except ImportError as e:
assert False, f"Failed to import cognee: {e}"