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
22 lines
475 B
Python
22 lines
475 B
Python
"""
|
|
Pytest configuration for MCP server tests.
|
|
This file prevents pytest from loading the parent project's conftest.py
|
|
"""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
# Add src directory to Python path for imports
|
|
src_path = Path(__file__).parent.parent / 'src'
|
|
sys.path.insert(0, str(src_path))
|
|
|
|
from config.schema import GraphitiConfig # noqa: E402
|
|
|
|
|
|
@pytest.fixture
|
|
def config():
|
|
"""Provide a default GraphitiConfig for tests."""
|
|
return GraphitiConfig()
|