@@ -89,6 +89,23 @@ class DatabaseFeatures(BaseDatabaseFeatures):
8989 "auth_tests.test_views.LoginTest.test_login_session_without_hash_session_key" ,
9090 # GenericRelation.value_to_string() assumes integer pk.
9191 "contenttypes_tests.test_fields.GenericRelationTests.test_value_to_string" ,
92+ # Broken by https://github.com/django/django/commit/65ad4ade74dc9208b9d686a451cd6045df0c9c3a
93+ "aggregation.tests.AggregateTestCase.test_even_more_aggregate" ,
94+ "aggregation.tests.AggregateTestCase.test_grouped_annotation_in_group_by" ,
95+ "aggregation.tests.AggregateTestCase.test_non_grouped_annotation_not_in_group_by" ,
96+ "aggregation_regress.tests.AggregationTests.test_aggregate_fexpr" ,
97+ "aggregation_regress.tests.AggregationTests.test_values_list_annotation_args_ordering" ,
98+ "annotations.tests.NonAggregateAnnotationTestCase.test_annotation_subquery_and_aggregate_values_chaining" ,
99+ "annotations.tests.NonAggregateAnnotationTestCase.test_values_fields_annotations_order" ,
100+ "queries.test_qs_combinators.QuerySetSetOperationTests.test_union_multiple_models_with_values_and_datetime_annotations" ,
101+ "queries.test_qs_combinators.QuerySetSetOperationTests.test_union_multiple_models_with_values_list_and_datetime_annotations" ,
102+ "queries.test_qs_combinators.QuerySetSetOperationTests.test_union_multiple_models_with_values_list_and_annotations" ,
103+ "queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_field_and_annotation_values" ,
104+ "queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_two_annotated_values_list" ,
105+ "queries.tests.Queries1Tests.test_union_values_subquery" ,
106+ # pymongo.errors.WriteError: Performing an update on the path '_id'
107+ # would modify the immutable field '_id'
108+ "migrations.test_operations.OperationTests.test_composite_pk_operations" ,
92109 }
93110 # $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
94111 _django_test_expected_failures_bitwise = {
@@ -200,9 +217,13 @@ def django_test_expected_failures(self):
200217 "prefetch_related.tests.Ticket21410Tests" ,
201218 "queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_related_with_m2m_and_objects_deletion" ,
202219 "serializers.test_json.JsonSerializerTestCase.test_serialize_prefetch_related_m2m" ,
220+ "serializers.test_json.JsonSerializerTestCase.test_serialize_prefetch_related_m2m_with_natural_keys" ,
203221 "serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_prefetch_related_m2m" ,
222+ "serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_prefetch_related_m2m_with_natural_keys" ,
204223 "serializers.test_xml.XmlSerializerTestCase.test_serialize_prefetch_related_m2m" ,
224+ "serializers.test_xml.XmlSerializerTestCase.test_serialize_prefetch_related_m2m_with_natural_keys" ,
205225 "serializers.test_yaml.YamlSerializerTestCase.test_serialize_prefetch_related_m2m" ,
226+ "serializers.test_yaml.YamlSerializerTestCase.test_serialize_prefetch_related_m2m_with_natural_keys" ,
206227 },
207228 "AutoField not supported." : {
208229 "bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields" ,
@@ -600,6 +621,9 @@ def django_test_expected_failures(self):
600621 "foreign_object.tests.MultiColumnFKTests" ,
601622 "foreign_object.tests.TestExtraJoinFilterQ" ,
602623 },
624+ "Tuple lookups are not supported." : {
625+ "foreign_object.test_tuple_lookups.TupleLookupsTests" ,
626+ },
603627 "Custom lookups are not supported." : {
604628 "custom_lookups.tests.BilateralTransformTests" ,
605629 "custom_lookups.tests.LookupTests.test_basic_lookup" ,
0 commit comments