@@ -533,6 +533,8 @@ def django_test_expected_failures(self):
533
533
"expressions.tests.BasicExpressionsTests.test_annotate_values_filter" ,
534
534
"expressions.tests.BasicExpressionsTests.test_filtering_on_rawsql_that_is_boolean" ,
535
535
"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" ,
536
538
"migrations.test_operations.OperationTests.test_run_sql" ,
537
539
"migrations.test_operations.OperationTests.test_run_sql_params" ,
538
540
"migrations.test_operations.OperationTests.test_separate_database_and_state" ,
@@ -667,8 +669,29 @@ def django_test_expected_failures(self):
667
669
},
668
670
"transaction.atomic() is not supported." : {
669
671
"backends.base.test_base.DatabaseWrapperLoggingTests" ,
672
+ "migrations.test_executor.ExecutorTests.test_atomic_operation_in_non_atomic_migration" ,
670
673
"migrations.test_operations.OperationTests.test_run_python_atomic" ,
671
674
},
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
+ },
672
695
}
673
696
674
697
@cached_property
0 commit comments