From c098777082010896f7943d201dc29aed7f076892 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 12 Dec 2024 13:35:07 -0500 Subject: [PATCH] reclassify tests for running converters on returning fields from insert --- django_mongodb/features.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/django_mongodb/features.py b/django_mongodb/features.py index ea7f69bd..7622ddd5 100644 --- a/django_mongodb/features.py +++ b/django_mongodb/features.py @@ -197,7 +197,6 @@ def django_test_expected_failures(self): }, "AutoField not supported.": { "bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields", - "custom_pk.tests.CustomPKTests.test_auto_field_subclass_create", "introspection.tests.IntrospectionTests.test_sequence_list", "lookup.tests.LookupTests.test_filter_by_reverse_related_field_transform", "lookup.tests.LookupTests.test_in_ignore_none_with_unhashable_items", @@ -212,6 +211,12 @@ def django_test_expected_failures(self): "model_fields.test_autofield.SmallAutoFieldTests", "queries.tests.TestInvalidValuesRelation.test_invalid_values", }, + "Converters aren't run on returning fields from insert.": { + # Unsure this is needed for this backend. Can implement by request. + # https://github.com/django/django/commit/d9de74141e8a920940f1b91ed0a3ccb835b55729 + "custom_pk.tests.CustomPKTests.test_auto_field_subclass_bulk_create", + "custom_pk.tests.CustomPKTests.test_auto_field_subclass_create", + }, "MongoDB does not enforce PositiveIntegerField constraint.": { "model_fields.test_integerfield.PositiveIntegerFieldTests.test_negative_values", },