yusyus
|
50e0bfd19b
|
fix: Update test file imports to use proper package paths
Fixed import errors in test_pdf_scraper.py and test_github_scraper.py:
- Replaced absolute imports with proper package imports
- Changed 'from pdf_scraper import' to 'from skill_seekers.cli.pdf_scraper import'
- Changed 'from github_scraper import' to 'from skill_seekers.cli.github_scraper import'
- Updated all @patch() decorators to use full module paths
- Removed sys.path manipulation workarounds
This completes the fix for import issues discovered during Task 1.2 (Issue #193).
Test Results:
- test_pdf_scraper.py: 18/18 passed ✅
- test_github_scraper.py: 22/22 passed ✅
|
2025-11-29 21:55:46 +03:00 |
|