# models/database/test_run.py """ Test Run Models - LEGACY LOCATION This file exists for backward compatibility. The canonical location is now: app/modules/dev_tools/models/test_run.py All imports should use the new location: from app.modules.dev_tools.models import TestRun, TestResult, TestCollection """ # Re-export from canonical location for backward compatibility from app.modules.dev_tools.models.test_run import ( TestRun, TestResult, TestCollection, ) __all__ = [ "TestRun", "TestResult", "TestCollection", ]