@@ -493,6 +493,11 @@ def django_test_expected_failures(self):
493493 "queries.tests.ValuesQuerysetTests.test_named_values_list_with_fields" ,
494494 "queries.tests.ValuesQuerysetTests.test_named_values_list_without_fields" ,
495495 "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" ,
496501 },
497502 "Test inspects query for SQL" : {
498503 "aggregation.tests.AggregateAnnotationPruningTests.test_non_aggregate_annotation_pruned" ,
@@ -664,17 +669,6 @@ def django_test_expected_failures(self):
664669 "backends.base.test_base.DatabaseWrapperLoggingTests" ,
665670 "migrations.test_operations.OperationTests.test_run_python_atomic" ,
666671 },
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- },
678672 }
679673
680674 @cached_property
0 commit comments