Legacy migration - no longer adds testing columns. The testing_in_progress and last_tested_at columns were removed from the Feature model as part of simplifying the testing agent architecture. Multiple testing agents can now test the same feature concurrently without coordination.
(engine)
| 237 | |
| 238 | |
| 239 | def _migrate_add_testing_columns(engine) -> None: |
| 240 | """Legacy migration - no longer adds testing columns. |
| 241 | |
| 242 | The testing_in_progress and last_tested_at columns were removed from the |
| 243 | Feature model as part of simplifying the testing agent architecture. |
| 244 | Multiple testing agents can now test the same feature concurrently |
| 245 | without coordination. |
| 246 | |
| 247 | This function is kept for backwards compatibility but does nothing. |
| 248 | Existing databases with these columns will continue to work - the columns |
| 249 | are simply ignored. |
| 250 | """ |
| 251 | pass |
| 252 | |
| 253 | |
| 254 | def _is_network_path(path: Path) -> bool: |