cognee/tests/import_test.py
2024-05-25 13:51:38 +02:00

7 lines
No EOL
196 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}"