Skip to content

Commit 7b62d54

Browse files
committed
added more excluded tests for 5.2
1 parent 2dfee62 commit 7b62d54

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

testapp/settings.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,37 @@
325325
'foreign_object.test_tuple_lookups.TupleLookupsTests.test_tuple_in_subquery',
326326
'foreign_object.test_agnostic_order_trimjoin.TestLookupQuery.test_deep_mixed_backward',
327327

328+
# Multi-column foreign key tests with tuple lookups - also affected by SQL Server limitations
329+
# TODO: Fix tuple lookup generation for multi-column FKs
330+
'foreign_object.tests.MultiColumnFKTests.test_double_nested_query',
331+
'foreign_object.tests.MultiColumnFKTests.test_forward_in_lookup_filters_correctly',
332+
'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_forward',
333+
'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_hidden_forward',
334+
'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_reverse',
335+
'foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_forward_works',
336+
'foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_reverse_works',
337+
'foreign_object.tests.MultiColumnFKTests.test_reverse_query_returns_correct_result',
338+
339+
# JSONField special character handling - SQL Server specific syntax issues
340+
# TODO: Fix JSONField key escaping for special characters
341+
'model_fields.test_jsonfield.TestQuerying.test_lookups_special_chars',
342+
'model_fields.test_jsonfield.TestQuerying.test_lookups_special_chars_double_quotes',
343+
344+
# JSONField bulk update with null handling
345+
# TODO: Fix bulk update SQL generation for JSONField null values
346+
'queries.test_bulk_update.BulkUpdateTests.test_json_field_sql_null',
347+
348+
# Migration and composite primary key issues
349+
# TODO: Implement composite primary key support
350+
'migrations.test_operations.OperationTests.test_composite_pk_operations',
351+
'migrations.test_operations.OperationTests.test_generated_field_changes_output_field',
352+
'migration_test_data_persistence.tests.MigrationDataPersistenceClassSetup.test_migration_data_persistence',
353+
354+
# Backend and schema test failures
355+
# TODO: Fix SQL Server specific backend behavior
356+
'backends.base.test_base.ExecuteWrapperTests.test_wrapper_debug',
357+
'indexes.tests.SchemaIndexesTests.test_alter_field_unique_false_removes_deferred_sql',
358+
328359
# Aggregation with filtered references
329360
# TODO: Fix complex aggregation queries with outer references
330361
'aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregrate_ref_in_subquery_annotation',

0 commit comments

Comments
 (0)