File tree Expand file tree Collapse file tree 3 files changed +36
-90
lines changed Expand file tree Collapse file tree 3 files changed +36
-90
lines changed Original file line number Diff line number Diff line change 55
55
check_framework
56
56
constraints
57
57
contenttypes_tests
58
- custom_columns
59
- custom_lookups
60
- custom_managers
61
- custom_methods
62
- custom_pk
63
- datatypes
64
- dates
65
- datetimes
66
- db_functions
67
- db_typecasts
68
- db_utils
69
- defer
70
- defer_regress
71
- delete
72
- delete_regress
73
- empty
74
- expressions
75
- expressions_case
76
- expressions_window
77
- field_defaults
78
- field_subclassing
79
- file_storage
80
- file_uploads
81
- filtered_relation
82
- foreign_object
83
- from_db_value
84
- generic_inline_admin
85
- generic_relations
86
- generic_relations_regress
87
- get_earliest_or_latest
88
- get_object_or_404
89
58
env :
90
59
SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
91
60
SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
Original file line number Diff line number Diff line change @@ -36,65 +36,37 @@ jobs:
36
36
- name : Run the tests
37
37
run : >
38
38
python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
39
- inline_formsets
40
- inspectdb
41
- introspection
42
- invalid_models_tests
43
- known_related_objects
44
- lookup
45
- m2m_and_m2o
46
- m2m_intermediary
47
- m2m_multiple
48
- m2m_recursive
49
- m2m_regress
50
- m2m_signals
51
- m2m_through
52
- m2m_through_regress
53
- m2o_recursive
54
- managers_regress
55
- many_to_many
56
- many_to_one
57
- many_to_one_null
58
- max_lengths
59
- migrate_signals
60
- migrations
61
- migration_test_data_persistence
62
- modeladmin
63
- model_fields
64
- model_forms
65
- model_formsets
66
- model_formsets_regress
67
- mutually_referential
68
- nested_foreign_keys
69
- null_fk
70
- null_fk_ordering
71
- null_queries
72
- one_to_one
73
- order_with_respect_to
74
- or_lookups
75
- pagination
76
- prefetch_related
77
- properties
78
- proxy_model_inheritance
79
- proxy_models
80
- queries
81
- queryset_pickle
82
- reserved_names
83
- reverse_lookup
84
- save_delete_hooks
85
- schema
86
- select_for_update
87
- select_related
88
- select_related_onetoone
89
- select_related_regress
90
- timezones
91
- transaction_hooks
92
- transactions
93
- unmanaged_models
94
- update
95
- update_only_fields
96
- validation
97
- view_tests
39
+ custom_columns
40
+ custom_lookups
41
+ custom_managers
42
+ custom_methods
43
+ custom_pk
44
+ datatypes
45
+ dates
46
+ datetimes
47
+ db_functions
48
+ db_typecasts
49
+ db_utils
50
+ defer
51
+ defer_regress
52
+ delete
53
+ delete_regress
54
+ empty
55
+ expressions
56
+ expressions_case
57
+ expressions_window
58
+ field_defaults
59
+ field_subclassing
60
+ file_storage
61
+ file_uploads
62
+ filtered_relation
63
+ foreign_object
64
+ from_db_value
65
+ generic_inline_admin
66
+ generic_relations
67
+ generic_relations_regress
68
+ get_earliest_or_latest
69
+ get_object_or_404
98
70
env :
99
71
SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
100
72
SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
Original file line number Diff line number Diff line change @@ -70,6 +70,11 @@ class DatabaseFeatures(BaseDatabaseFeatures):
70
70
'model_fields.test_booleanfield.BooleanFieldTests.test_null_default' ,
71
71
'fixtures.tests.FixtureLoadingTests.test_loaddata_error_message' ,
72
72
'generic_relations.tests.GenericRelationsTests.test_unsaved_instance_on_generic_foreign_key' ,
73
+ 'm2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model_value_required_fails' ,
74
+ 'm2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model_value_required_fails' ,
75
+ 'm2m_through.tests.M2mThroughTests.test_get_or_create_on_m2m_with_intermediate_model_value_required_fails' ,
76
+ 'm2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model_value_required_fails' ,
77
+ 'm2m_through.tests.M2mThroughTests.test_update_or_create_on_m2m_with_intermediate_model_value_required_fails' ,
73
78
'schema.tests.SchemaTests.test_alter_numeric_field_keep_null_status' ,
74
79
'schema.tests.SchemaTests.test_rename_keep_null_status' ,
75
80
# Invalid argument types for function '+': (INTERVAL, TIMESTAMP_NTZ(9))
You can’t perform that action at this time.
0 commit comments