fix: Update test imports and merge_sources for v2.0.0 release

- Fix conflict_detector import in merge_sources.py (use relative import)
- Update test_mcp_server.py to use skill_seekers.mcp.server imports
- Fix @patch decorators to reference full module path
- Add MCP_AVAILABLE guards to test_unified_mcp_integration.py
- Add proper skipif decorators for MCP tests
- All 379 tests now passing (0 failures)

Resolves import errors that occurred during PyPI package testing.
This commit is contained in:
yusyus
2025-11-11 22:26:52 +03:00
parent 4080794eb7
commit 530a68d1dc
3 changed files with 33 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ import tempfile
import os
from pathlib import Path
from typing import Dict, List, Any, Optional
from conflict_detector import Conflict, ConflictDetector
from .conflict_detector import Conflict, ConflictDetector
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)