fix: Update test imports for new package structure

Updated 8 test files to use new skill_seekers.* imports:
- test_async_scraping.py
- test_estimate_pages.py
- test_package_skill.py
- test_parallel_scraping.py
- test_unified.py
- test_unified_mcp_integration.py
- test_upload_skill.py
- test_utilities.py

Changed:
- from cli.* → from skill_seekers.cli.*
- from skill_seeker_mcp.* → from skill_seekers.mcp.*
- Removed obsolete sys.path.insert() calls

Result:
- 364/389 tests passing (93.5% pass rate)
- Remaining 25 failures are path-related tests that need
  updating for new unified CLI commands (will fix next)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yusyus
2025-11-07 01:21:29 +03:00
parent ce1c07b437
commit 9931066741
8 changed files with 11 additions and 35 deletions

View File

@@ -13,10 +13,7 @@ from pathlib import Path
from unittest.mock import Mock, patch, MagicMock
from collections import deque
# Add cli directory to path
sys.path.insert(0, str(Path(__file__).parent.parent / 'cli'))
from doc_scraper import DocToSkillConverter
from skill_seekers.cli.doc_scraper import DocToSkillConverter
class TestParallelScrapingConfiguration(unittest.TestCase):