186
Because the Version table holds schema migration data, it will not be
187
cleaned up by the standard test suite. This is generally not a problem
188
for SQLite since each test gets a new database file, but for PostgreSQL,
189
this will cause migration.rst to fail on subsequent runs. So let's just
190
clean up the database explicitly.
192
>>> results = config.db.store.execute("""
193
... DELETE FROM version WHERE version.version >= '201299990000'
194
... OR version.component = 'test';
196
>>> config.db.commit()