4a19d70af1
Lint with Ruff / ruff (push) Has been cancelled
MCP Server Tests / live-mcp-tests (push) Has been cancelled
Tests / unit-tests (push) Has been cancelled
Tests / database-integration-tests (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Server Tests / live-server-tests (push) Has been cancelled
Pyright Type Check / pyright (push) Has been cancelled
14 lines
601 B
Python
14 lines
601 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 # noqa: E402
|
|
|
|
# Exclude mcp_server from test collection - it has its own test suite and conftest
|
|
collect_ignore_glob = ['mcp_server/*']
|
|
|
|
__all__ = ['graph_driver', 'mock_embedder']
|