Legacy service and task files now re-export from module locations: app/services/: - stats_service.py -> app.modules.analytics.services - usage_service.py -> app.modules.analytics.services app/tasks/celery_tasks/: - code_quality.py -> app.modules.dev_tools.tasks - test_runner.py -> app.modules.dev_tools.tasks Maintains backwards compatibility while actual code lives in self-contained modules. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
486 B
Python
16 lines
486 B
Python
# app/tasks/celery_tasks/test_runner.py
|
|
"""
|
|
Celery tasks for test execution - LEGACY LOCATION
|
|
|
|
This file exists for backward compatibility.
|
|
The canonical location is now: app/modules/dev_tools/tasks/test_runner.py
|
|
|
|
All imports should use the new location:
|
|
from app.modules.dev_tools.tasks import execute_test_run
|
|
"""
|
|
|
|
# Re-export from canonical location for backward compatibility
|
|
from app.modules.dev_tools.tasks.test_runner import execute_test_run
|
|
|
|
__all__ = ["execute_test_run"]
|