Skip to content

Commit f42b4ad

Browse files
committed
Update unit test.
1 parent f46793a commit f42b4ad

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/test-python.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,14 @@ jobs:
8989
defer_regress
9090
from_db_value
9191
lookup
92+
m2m_and_m2o
93+
m2m_intermediary
94+
m2m_multiple
95+
m2m_recursive
96+
m2m_regress
97+
m2m_signals
98+
m2m_through
99+
m2o_recursive
92100
model_fields
93101
ordering
94102
or_lookups

django_mongodb/features.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ def django_test_expected_failures(self):
154154
"defer_regress.tests.DeferRegressionTest.test_basic",
155155
"defer_regress.tests.DeferRegressionTest.test_common_model_different_mask",
156156
"defer_regress.tests.DeferRegressionTest.test_defer_annotate_select_related",
157-
"defer_regress.tests.DeferRegressionTest.test_reverse_one_to_one_relations",
158157
},
159158
"MongoDB does not enforce UNIQUE constraints.": {
160159
"auth_tests.test_basic.BasicTestCase.test_unicode_username",
@@ -249,6 +248,7 @@ def django_test_expected_failures(self):
249248
"model_fields.test_jsonfield.TestQuerying.test_usage_in_subquery",
250249
},
251250
"Count doesn't work in QuerySet.annotate()": {
251+
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_related_in_subquery",
252252
"annotations.tests.AliasTests.test_alias_annotate_with_aggregation",
253253
"annotations.tests.AliasTests.test_order_by_alias_aggregate",
254254
"annotations.tests.NonAggregateAnnotationTestCase.test_annotate_exists",
@@ -289,7 +289,6 @@ def django_test_expected_failures(self):
289289
"Queries with multiple tables are not supported.": {
290290
"annotations.tests.AliasTests.test_alias_default_alias_expression",
291291
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_aggregate_with_m2o",
292-
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_related_in_subquery",
293292
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_filter_with_subquery",
294293
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_reverse_m2m",
295294
"annotations.tests.NonAggregateAnnotationTestCase.test_mti_annotations",

0 commit comments

Comments
 (0)