From c0421d6816e1069ef2bb2862e717e4cb96a14a45 Mon Sep 17 00:00:00 2001 From: mShan0 Date: Tue, 15 Aug 2023 17:04:49 -0700 Subject: [PATCH 1/3] unskips some schema tests --- testapp/settings.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/testapp/settings.py b/testapp/settings.py index 6adc9fd7..a0d601f5 100644 --- a/testapp/settings.py +++ b/testapp/settings.py @@ -123,15 +123,10 @@ 'migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_with_to_field_target_changes', 'schema.tests.SchemaTests.test_alter_auto_field_to_char_field', 'schema.tests.SchemaTests.test_alter_auto_field_to_integer_field', - 'schema.tests.SchemaTests.test_alter_implicit_id_to_explicit', 'schema.tests.SchemaTests.test_alter_int_pk_to_autofield_pk', - 'schema.tests.SchemaTests.test_alter_int_pk_to_bigautofield_pk', - 'schema.tests.SchemaTests.test_alter_pk_with_self_referential_field', 'schema.tests.SchemaTests.test_remove_field_check_does_not_remove_meta_constraints', 'schema.tests.SchemaTests.test_remove_field_unique_does_not_remove_meta_constraints', 'schema.tests.SchemaTests.test_text_field_with_db_index', - 'schema.tests.SchemaTests.test_unique_together_with_fk', - 'schema.tests.SchemaTests.test_unique_together_with_fk_with_existing_index', 'aggregation.tests.AggregateTestCase.test_count_star', 'aggregation_regress.tests.AggregationTests.test_values_list_annotation_args_ordering', 'expressions.tests.FTimeDeltaTests.test_invalid_operator', From fb35bc03ddf0f34f6f68d4e3024f95d5a25170ef Mon Sep 17 00:00:00 2001 From: mShan0 <96149598+mShan0@users.noreply.github.com> Date: Thu, 24 Aug 2023 13:59:56 -0700 Subject: [PATCH 2/3] undo 1 test unskip --- testapp/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testapp/settings.py b/testapp/settings.py index a0d601f5..9a8211f6 100644 --- a/testapp/settings.py +++ b/testapp/settings.py @@ -124,6 +124,7 @@ 'schema.tests.SchemaTests.test_alter_auto_field_to_char_field', 'schema.tests.SchemaTests.test_alter_auto_field_to_integer_field', 'schema.tests.SchemaTests.test_alter_int_pk_to_autofield_pk', + 'schema.tests.SchemaTests.test_alter_int_pk_to_bigautofield_pk', 'schema.tests.SchemaTests.test_remove_field_check_does_not_remove_meta_constraints', 'schema.tests.SchemaTests.test_remove_field_unique_does_not_remove_meta_constraints', 'schema.tests.SchemaTests.test_text_field_with_db_index', From c8d6e54721829d384bc3b65fd430793bb0f7fe7e Mon Sep 17 00:00:00 2001 From: mShan0 Date: Tue, 5 Dec 2023 18:54:32 -0800 Subject: [PATCH 3/3] test --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index b75828ed..dd9cb09b 100755 --- a/test.sh +++ b/test.sh @@ -4,7 +4,7 @@ # * many_to_one_null set -e - + DJANGO_VERSION="$(python -m django --version)" cd django