mirror of
https://github.com/getzep/graphiti.git
synced 2025-11-19 19:57:48 +00:00
* Fix FalkoDB tests * Add support for graph memory using Kuzu * Fix lints * Fix queries * Add tests * Add comments * Add more test coverage * Add mocked tests * Format * Add mocked tests II * Refactor community queries * Add more mocked tests * Refactor tests to always cleanup * Add more mocked tests * Update kuzu * Refactor how filters are built * Add more mocked tests * Refactor and cleanup * Fix tests * Fix lints * Refactor tests * Disable neptune * Fix * Update kuzu version * Update kuzu to latest release * Fix filter * Fix query * Fix Neptune query * Fix bulk queries * Fix lints * Fix deletes * Comments and format * Add Kuzu to the README * Fix bulk queries * Test all fields of nodes and edges * Fix lints * Update search_utils.py --------- Co-authored-by: Preston Rasmussen <109292228+prasmussen15@users.noreply.github.com>
11 lines
464 B
Python
11 lines
464 B
Python
import os
|
|
import sys
|
|
|
|
# This code adds the project root directory to the Python path, allowing imports to work correctly when running tests.
|
|
# Without this file, you might encounter ModuleNotFoundError when trying to import modules from your project, especially when running tests.
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__))))
|
|
|
|
from tests.helpers_test import graph_driver, mock_embedder
|
|
|
|
__all__ = ['graph_driver', 'mock_embedder']
|