@@ -493,6 +493,11 @@ def django_test_expected_failures(self):
493
493
"queries.tests.ValuesQuerysetTests.test_named_values_list_with_fields" ,
494
494
"queries.tests.ValuesQuerysetTests.test_named_values_list_without_fields" ,
495
495
"select_related.tests.SelectRelatedTests.test_select_related_with_extra" ,
496
+ "aggregation_regress.tests.AggregationTests.test_annotate_with_extra" ,
497
+ "aggregation_regress.tests.AggregationTests.test_annotation" ,
498
+ "aggregation_regress.tests.AggregationTests.test_more_more3" ,
499
+ "aggregation_regress.tests.AggregationTests.test_more_more_more3" ,
500
+ "many_to_one.tests.ManyToOneTests.test_selects" ,
496
501
},
497
502
"Test inspects query for SQL" : {
498
503
"aggregation.tests.AggregateAnnotationPruningTests.test_non_aggregate_annotation_pruned" ,
@@ -664,17 +669,6 @@ def django_test_expected_failures(self):
664
669
"backends.base.test_base.DatabaseWrapperLoggingTests" ,
665
670
"migrations.test_operations.OperationTests.test_run_python_atomic" ,
666
671
},
667
- "QuerySet extras are not supported on MongoDB" : {
668
- # QuerySet.extra(select=...) raises NotSupportedError instead of:
669
- # 'RawSQL' object has no attribute 'as_mql'.
670
- "aggregation_regress.tests.AggregationTests.test_annotate_with_extra" ,
671
- "aggregation_regress.tests.AggregationTests.test_annotation" ,
672
- "aggregation_regress.tests.AggregationTests.test_more_more3" ,
673
- "aggregation_regress.tests.AggregationTests.test_more_more_more3" ,
674
- # QuerySet.extra(where=...) should raise NotSupportedError instead of:
675
- # 'ExtraWhere' object has no attribute 'as_mql'.
676
- "many_to_one.tests.ManyToOneTests.test_selects" ,
677
- },
678
672
}
679
673
680
674
@cached_property
0 commit comments