Skip to content

Commit

Permalink
split
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Dec 7, 2021
1 parent 50b67e8 commit 89bfc4b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 90 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,37 +55,6 @@ jobs:
check_framework
constraints
contenttypes_tests
custom_columns
custom_lookups
custom_managers
custom_methods
custom_pk
datatypes
dates
datetimes
db_functions
db_typecasts
db_utils
defer
defer_regress
delete
delete_regress
empty
expressions
expressions_case
expressions_window
field_defaults
field_subclassing
file_storage
file_uploads
filtered_relation
foreign_object
from_db_value
generic_inline_admin
generic_relations
generic_relations_regress
get_earliest_or_latest
get_object_or_404
env:
SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }}
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
Expand Down
90 changes: 31 additions & 59 deletions .github/workflows/tests1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,65 +36,37 @@ jobs:
- name: Run the tests
run: >
python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
inline_formsets
inspectdb
introspection
invalid_models_tests
known_related_objects
lookup
m2m_and_m2o
m2m_intermediary
m2m_multiple
m2m_recursive
m2m_regress
m2m_signals
m2m_through
m2m_through_regress
m2o_recursive
managers_regress
many_to_many
many_to_one
many_to_one_null
max_lengths
migrate_signals
migrations
migration_test_data_persistence
modeladmin
model_fields
model_forms
model_formsets
model_formsets_regress
mutually_referential
nested_foreign_keys
null_fk
null_fk_ordering
null_queries
one_to_one
order_with_respect_to
or_lookups
pagination
prefetch_related
properties
proxy_model_inheritance
proxy_models
queries
queryset_pickle
reserved_names
reverse_lookup
save_delete_hooks
schema
select_for_update
select_related
select_related_onetoone
select_related_regress
timezones
transaction_hooks
transactions
unmanaged_models
update
update_only_fields
validation
view_tests
custom_columns
custom_lookups
custom_managers
custom_methods
custom_pk
datatypes
dates
datetimes
db_functions
db_typecasts
db_utils
defer
defer_regress
delete
delete_regress
empty
expressions
expressions_case
expressions_window
field_defaults
field_subclassing
file_storage
file_uploads
filtered_relation
foreign_object
from_db_value
generic_inline_admin
generic_relations
generic_relations_regress
get_earliest_or_latest
get_object_or_404
env:
SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }}
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
Expand Down
5 changes: 5 additions & 0 deletions django_snowflake/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ class DatabaseFeatures(BaseDatabaseFeatures):
'model_fields.test_booleanfield.BooleanFieldTests.test_null_default',
'fixtures.tests.FixtureLoadingTests.test_loaddata_error_message',
'generic_relations.tests.GenericRelationsTests.test_unsaved_instance_on_generic_foreign_key',
'm2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model_value_required_fails',
'm2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model_value_required_fails',
'm2m_through.tests.M2mThroughTests.test_get_or_create_on_m2m_with_intermediate_model_value_required_fails',
'm2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model_value_required_fails',
'm2m_through.tests.M2mThroughTests.test_update_or_create_on_m2m_with_intermediate_model_value_required_fails',
'schema.tests.SchemaTests.test_alter_numeric_field_keep_null_status',
'schema.tests.SchemaTests.test_rename_keep_null_status',
# Invalid argument types for function '+': (INTERVAL, TIMESTAMP_NTZ(9))
Expand Down

0 comments on commit 89bfc4b

Please sign in to comment.