Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions django_mongodb/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ class DatabaseFeatures(BaseDatabaseFeatures):
"backends.tests.ThreadTests.test_pass_connection_between_threads",
"backends.tests.ThreadTests.test_closing_non_shared_connections",
"backends.tests.ThreadTests.test_default_connection_thread_local",
# AddField
"schema.tests.SchemaTests.test_add_indexed_charfield",
"schema.tests.SchemaTests.test_add_unique_charfield",
# Add/RemoveIndex
"migrations.test_operations.OperationTests.test_add_index",
"migrations.test_operations.OperationTests.test_alter_field_with_index",
Expand All @@ -108,11 +111,9 @@ class DatabaseFeatures(BaseDatabaseFeatures):
"schema.tests.SchemaTests.test_alter_int_pk_to_int_unique",
"schema.tests.SchemaTests.test_alter_not_unique_field_to_primary_key",
"schema.tests.SchemaTests.test_alter_null_to_not_null",
"schema.tests.SchemaTests.test_alter_primary_key_the_same_name",
"schema.tests.SchemaTests.test_autofield_to_o2o",
# AlterField (db_index)
"schema.tests.SchemaTests.test_alter_renames_index",
"schema.tests.SchemaTests.test_indexes",
"schema.tests.SchemaTests.test_remove_constraints_capital_letters",
"schema.tests.SchemaTests.test_remove_db_index_doesnt_remove_custom_indexes",
# AlterField (unique)
"schema.tests.SchemaTests.test_unique",
Expand Down Expand Up @@ -544,6 +545,7 @@ def django_test_expected_failures(self):
"model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression",
"queries.tests.Queries1Tests.test_order_by_rawsql",
"schema.test_logging.SchemaLoggerTests.test_extra_args",
"schema.tests.SchemaTests.test_remove_constraints_capital_letters",
"timezones.tests.LegacyDatabaseTests.test_cursor_execute_accepts_naive_datetime",
"timezones.tests.LegacyDatabaseTests.test_cursor_execute_returns_naive_datetime",
"timezones.tests.LegacyDatabaseTests.test_raw_sql",
Expand Down Expand Up @@ -628,6 +630,7 @@ def django_test_expected_failures(self):
"introspection.tests.IntrospectionTests.test_get_primary_key_column",
},
"MongoDB can't introspect primary key.": {
"schema.tests.SchemaTests.test_alter_primary_key_the_same_name",
"schema.tests.SchemaTests.test_primary_key",
},
"Known issue querying JSONField.": {
Expand Down