Skip to content

Commit c88cc52

Browse files
committed
Update unit test.
1 parent 12e7852 commit c88cc52

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
@@ -156,7 +156,6 @@ def django_test_expected_failures(self):
156156
"defer_regress.tests.DeferRegressionTest.test_basic",
157157
"defer_regress.tests.DeferRegressionTest.test_common_model_different_mask",
158158
"defer_regress.tests.DeferRegressionTest.test_defer_annotate_select_related",
159-
"defer_regress.tests.DeferRegressionTest.test_reverse_one_to_one_relations",
160159
},
161160
"MongoDB does not enforce UNIQUE constraints.": {
162161
"auth_tests.test_basic.BasicTestCase.test_unicode_username",
@@ -251,6 +250,7 @@ def django_test_expected_failures(self):
251250
"model_fields.test_jsonfield.TestQuerying.test_usage_in_subquery",
252251
},
253252
"Count doesn't work in QuerySet.annotate()": {
253+
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_related_in_subquery",
254254
"annotations.tests.AliasTests.test_alias_annotate_with_aggregation",
255255
"annotations.tests.AliasTests.test_order_by_alias_aggregate",
256256
"annotations.tests.NonAggregateAnnotationTestCase.test_annotate_exists",
@@ -291,7 +291,6 @@ def django_test_expected_failures(self):
291291
"Queries with multiple tables are not supported.": {
292292
"annotations.tests.AliasTests.test_alias_default_alias_expression",
293293
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_aggregate_with_m2o",
294-
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_related_in_subquery",
295294
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_filter_with_subquery",
296295
"annotations.tests.NonAggregateAnnotationTestCase.test_annotation_reverse_m2m",
297296
"annotations.tests.NonAggregateAnnotationTestCase.test_mti_annotations",

0 commit comments

Comments
 (0)