# 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"]