Skip to content

Commit 5e876d2

Browse files
committed
remove forms_tests
1 parent b60072d commit 5e876d2

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,10 @@ jobs:
8080
file_uploads
8181
filtered_relation
8282
foreign_object
83-
forms_tests
8483
from_db_value
8584
generic_inline_admin
8685
generic_relations
8786
generic_relations_regress
88-
generic_views
8987
get_earliest_or_latest
9088
get_object_or_404
9189
inline_formsets
@@ -113,6 +111,9 @@ jobs:
113111
migration_test_data_persistence
114112
modeladmin
115113
model_fields
114+
model_forms
115+
model_formsets
116+
model_formsets_regress
116117
mutually_referential
117118
nested_foreign_keys
118119
null_fk

django_snowflake/features.py

+7
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
6262
'lookup.tests.LookupTests.test_regex',
6363
# "Binding data in type (event) is not supported." To be investigated.
6464
'model_fields.test_charfield.TestCharField.test_assignment_from_choice_enum',
65+
# Binding data in type (safestring) is not supported.
66+
'i18n.tests.TestModels.test_safestr',
6567
# Violating NOT NULL constraint should raise IntegrityError instead of
6668
# ProgrammingError: https://github.com/snowflakedb/snowflake-connector-python/issues/922
6769
'custom_pk.tests.CustomPKTests.test_required_pk',
@@ -205,6 +207,10 @@ class DatabaseFeatures(BaseDatabaseFeatures):
205207
'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564',
206208
'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564_nullable_fk',
207209
'many_to_many.tests.ManyToManyTests.test_selects',
210+
'model_forms.tests.LimitChoicesToTests.test_fields_for_model_applies_limit_choices_to',
211+
'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_fk_rel',
212+
'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_m2m_rel',
213+
'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_no_duplicates',
208214
'queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_on_annotated_and_unannotated', # noqa
209215
'queries.tests.ExcludeTest17600.test_exclude_plain',
210216
'queries.tests.ExcludeTest17600.test_exclude_plain_distinct',
@@ -357,6 +363,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
357363
'assertNumQueries is sometimes off because of the extra queries this '
358364
'backend uses to fetch an object\'s ID.': {
359365
'contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_creation',
366+
'model_formsets_regress.tests.FormsetTests.test_extraneous_query_is_not_run',
360367
},
361368
'It can be problematic if a model instance is manually assigned a pk value.': {
362369
'contenttypes_tests.test_views.ContentTypesViewsSiteRelTests.test_shortcut_view_with_null_site_fk',

0 commit comments

Comments
 (0)