refactor migration tests to allow testing for exceptions while migrating

This commit is contained in:
jonaswinkler 2021-02-09 19:47:50 +01:00
parent 0c40a28ad3
commit 1ba89ddd09

View File

@ -92,6 +92,7 @@ class TestMigrations(TransactionTestCase):
migrate_from = None migrate_from = None
migrate_to = None migrate_to = None
auto_migrate = True
def setUp(self): def setUp(self):
super(TestMigrations, self).setUp() super(TestMigrations, self).setUp()
@ -108,6 +109,12 @@ class TestMigrations(TransactionTestCase):
self.setUpBeforeMigration(old_apps) self.setUpBeforeMigration(old_apps)
self.apps = old_apps
if self.auto_migrate:
self.performMigration()
def performMigration(self):
# Run the migration to test # Run the migration to test
executor = MigrationExecutor(connection) executor = MigrationExecutor(connection)
executor.loader.build_graph() # reload. executor.loader.build_graph() # reload.