MCPcopy Index your code
hub / github.com/AutoForgeAI/autoforge / _migrate_add_testing_columns

Function _migrate_add_testing_columns

api/database.py:239–251  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

237
238
239def _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
254def _is_network_path(path: Path) -> bool:

Callers 1

create_databaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected