diff options
| author | Tim Graham <timograham@gmail.com> | 2017-01-09 08:02:09 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-09 08:02:09 -0500 |
| commit | 9932e1bf52a8167af1bfce0db56e68ca60255814 (patch) | |
| tree | 66ee02936a6a2811075f12b12c25a9ece81633a1 /tests/migrations/test_executor.py | |
| parent | d27643354e467ec1fdb5288809bff118189569cb (diff) | |
Fixed test isolation in a couple migrations tests.
Without this, tests from refs #27432 fail when running with --reverse.
Diffstat (limited to 'tests/migrations/test_executor.py')
| -rw-r--r-- | tests/migrations/test_executor.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/migrations/test_executor.py b/tests/migrations/test_executor.py index 01b31a6dae..60e7ec9771 100644 --- a/tests/migrations/test_executor.py +++ b/tests/migrations/test_executor.py @@ -512,6 +512,9 @@ class ExecutorTests(MigrationTestBase): ('mutate_state_a', None), ]) self.assertIn('added', dict(state.models['mutate_state_b', 'b'].fields)) + executor.migrate([ + ('mutate_state_b', None), + ]) @override_settings(MIGRATION_MODULES={"migrations": "migrations.test_migrations"}) def test_process_callback(self): @@ -592,6 +595,7 @@ class ExecutorTests(MigrationTestBase): editor.execute(editor.sql_delete_table % {"table": "author_app_author"}) self.assertTableNotExists("author_app_author") self.assertTableNotExists("book_app_book") + executor.migrate([("author_app", None)], fake=True) @override_settings(MIGRATION_MODULES={"migrations": "migrations.test_migrations_squashed"}) def test_apply_all_replaced_marks_replacement_as_applied(self): |
