Import Error Tracking:
- Add MarketplaceImportError model to store detailed error information
- Store row number, identifier, error type, message, and row data for each error
- Add API endpoint GET /admin/marketplace-import-jobs/{job_id}/errors
- Add UI to view and browse import errors in job details modal
- Support pagination and error type filtering
Translation Tabs:
- Replace flat translation list with tabbed interface on product detail page
- Add language tabs with full language names
- Add copy-to-clipboard functionality for translation content
- Improved UX with better visual separation of translations
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Vendor API Integration Tests
Documentation
For comprehensive vendor API testing documentation, please see:
Vendor API Testing Guide in MkDocs
Quick Start
# Run all vendor tests
pytest tests/integration/api/v1/vendor/ -v
# Run with coverage
pytest tests/integration/api/v1/vendor/ \
--cov=app/api/v1/vendor \
--cov-report=html
Test Files
test_authentication.py- Authentication tests (30+ tests)test_dashboard.py- Dashboard stats tests (12 tests)
Fixtures
Key fixtures for vendor testing:
vendor_user_headers- Authentication headers for vendor APItest_vendor_with_vendor_user- Vendor with VendorUser association
See Also
- Vendor API Testing Guide - Full documentation
- Test Structure - Overall test organization