- Created isolated pytest.ini configuration for MCP server
- Added conftest.py to prevent loading parent project fixtures
- Added pytest and pytest-asyncio to dev dependencies
- Enabled pytest in CI workflow with proper environment variables
- Fixed asyncio test configuration
Pytest now runs successfully for MCP server tests without interfering
with the root project test configuration.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
No EOL
459 B
Python
20 lines
No EOL
459 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
|
|
|
|
|
|
@pytest.fixture
|
|
def config():
|
|
"""Provide a default GraphitiConfig for tests."""
|
|
return GraphitiConfig() |