@@ -533,6 +533,8 @@ def django_test_expected_failures(self):
533533 "expressions.tests.BasicExpressionsTests.test_annotate_values_filter" ,
534534 "expressions.tests.BasicExpressionsTests.test_filtering_on_rawsql_that_is_boolean" ,
535535 "expressions.tests.BasicExpressionsTests.test_order_by_multiline_sql" ,
536+ "migrations.test_commands.MigrateTests.test_migrate_plan" ,
537+ "migrations.test_multidb.MultiDBOperationTests.test_run_sql_migrate_foo_router_with_hints" ,
536538 "migrations.test_operations.OperationTests.test_run_sql" ,
537539 "migrations.test_operations.OperationTests.test_run_sql_params" ,
538540 "migrations.test_operations.OperationTests.test_separate_database_and_state" ,
@@ -667,8 +669,29 @@ def django_test_expected_failures(self):
667669 },
668670 "transaction.atomic() is not supported." : {
669671 "backends.base.test_base.DatabaseWrapperLoggingTests" ,
672+ "migrations.test_executor.ExecutorTests.test_atomic_operation_in_non_atomic_migration" ,
670673 "migrations.test_operations.OperationTests.test_run_python_atomic" ,
671674 },
675+ "migrate --fake-initial is not supported." : {
676+ "migrations.test_commands.MigrateTests.test_migrate_fake_initial" ,
677+ "migrations.test_commands.MigrateTests.test_migrate_fake_split_initial" ,
678+ "migrations.test_executor.ExecutorTests.test_soft_apply" ,
679+ },
680+ "SchemaEditor doesn't log or collect queries." : {
681+ # https://github.com/mongodb-labs/django-mongodb/issues/141
682+ "migrations.test_commands.MigrateTests.test_migrate_syncdb_app_label" ,
683+ "migrations.test_commands.MigrateTests.test_migrate_syncdb_deferred_sql_executed_with_schemaeditor" ,
684+ "migrations.test_commands.MigrateTests.test_sqlmigrate_backwards" ,
685+ "migrations.test_commands.MigrateTests.test_sqlmigrate_for_non_atomic_migration" ,
686+ "migrations.test_commands.MigrateTests.test_sqlmigrate_for_non_transactional_databases" ,
687+ "migrations.test_commands.MigrateTests.test_sqlmigrate_forwards" ,
688+ "migrations.test_commands.MigrateTests.test_sqlmigrate_replaced_migration" ,
689+ "migrations.test_commands.MigrateTests.test_sqlmigrate_squashed_migration" ,
690+ },
691+ "SchemaEditor.create_model() must raise DatabaseError rather than "
692+ "pymongo.errors.CollectionInvalid: collection already exists" : {
693+ "migrations.test_commands.MigrateTests.test_migrate_initial_false" ,
694+ },
672695 }
673696
674697 @cached_property
0 commit comments