|
36 | 36 | PASSWORD_HASHERS = [ |
37 | 37 | 'django.contrib.auth.hashers.MD5PasswordHasher', |
38 | 38 | ] |
| 39 | + |
| 40 | +TEST_RUNNER = "testapp.runners.ExcludedTestSuiteRunner" |
| 41 | +EXCLUDED_TESTS = ['aggregation.tests.AggregateTestCase.test_expression_on_aggregation', |
| 42 | + 'aggregation_regress.tests.AggregationTests.test_annotated_conditional_aggregate', |
| 43 | + 'aggregation_regress.tests.AggregationTests.test_annotation_with_value', |
| 44 | + 'aggregation.tests.AggregateTestCase.test_distinct_on_aggregate', |
| 45 | + 'annotations.tests.NonAggregateAnnotationTestCase.test_annotate_exists', |
| 46 | + 'custom_lookups.tests.BilateralTransformTests.test_transform_order_by', |
| 47 | + 'expressions.tests.BasicExpressionsTests.test_filtering_on_annotate_that_uses_q', |
| 48 | + 'expressions.tests.BasicExpressionsTests.test_order_by_exists', |
| 49 | + 'expressions.tests.ExpressionOperatorTests.test_righthand_power', |
| 50 | + 'expressions.tests.FTimeDeltaTests.test_datetime_subtraction_microseconds', |
| 51 | + 'expressions.tests.FTimeDeltaTests.test_duration_with_datetime_microseconds', |
| 52 | + 'expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_in_lookups_join_choice', |
| 53 | + 'expressions_case.tests.CaseExpressionTests.test_annotate_with_in_clause', |
| 54 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_with_m2m_to_self', |
| 55 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_with_valid_fixture_dirs', |
| 56 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_works_when_fixture_has_forward_refs', |
| 57 | + 'fixtures_regress.tests.TestFixtures.test_path_containing_dots', |
| 58 | + 'fixtures_regress.tests.TestFixtures.test_pg_sequence_resetting_checks', |
| 59 | + 'fixtures_regress.tests.TestFixtures.test_pretty_print_xml', |
| 60 | + 'fixtures_regress.tests.TestFixtures.test_proxy_model_included', |
| 61 | + 'fixtures_regress.tests.TestFixtures.test_relative_path', |
| 62 | + 'fixtures_regress.tests.TestFixtures.test_relative_path_in_fixture_dirs', |
| 63 | + 'fixtures_regress.tests.TestFixtures.test_ticket_20820', |
| 64 | + 'fixtures_regress.tests.TestFixtures.test_ticket_22421', |
| 65 | + 'lookup.tests.LookupTests.test_regex', |
| 66 | + 'lookup.tests.LookupTests.test_regex_backreferencing', |
| 67 | + 'lookup.tests.LookupTests.test_regex_non_ascii', |
| 68 | + 'lookup.tests.LookupTests.test_regex_non_string', |
| 69 | + 'lookup.tests.LookupTests.test_regex_null', |
| 70 | + 'ordering.tests.OrderingTests.test_orders_nulls_first_on_filtered_subquery', |
| 71 | + 'queries.test_bulk_update.BulkUpdateNoteTests.test_set_field_to_null', |
| 72 | + 'get_or_create.tests.UpdateOrCreateTransactionTests.test_creation_in_transaction', |
| 73 | + 'indexes.tests.PartialIndexTests.test_multiple_conditions', |
| 74 | + 'introspection.tests.IntrospectionTests.test_get_constraints', |
| 75 | + 'migrations.test_executor.ExecutorTests.test_alter_id_type_with_fk', |
| 76 | + 'migrations.test_operations.OperationTests.test_add_constraint_percent_escaping', |
| 77 | + 'migrations.test_operations.OperationTests.test_alter_field_pk', |
| 78 | + 'migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_target_changes', |
| 79 | + 'migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_with_to_field_target_changes', |
| 80 | + 'migrations.test_operations.OperationTests.test_alter_field_with_index', |
| 81 | + 'migrations.test_operations.OperationTests.test_autofield_foreignfield_growth', |
| 82 | + 'migrations.test_operations.OperationTests.test_rename_field_reloads_state_on_fk_target_changes', |
| 83 | + 'migrations.test_operations.OperationTests.test_rename_m2m_model_after_rename_field', |
| 84 | + 'migrations.test_operations.OperationTests.test_rename_model_with_superclass_fk', |
| 85 | + 'migrations.test_operations.OperationTests.test_rename_referenced_field_state_forward', |
| 86 | + 'schema.tests.SchemaTests.test_alter_auto_field_to_char_field', |
| 87 | + 'schema.tests.SchemaTests.test_alter_auto_field_to_integer_field', |
| 88 | + 'schema.tests.SchemaTests.test_alter_implicit_id_to_explicit', |
| 89 | + 'schema.tests.SchemaTests.test_alter_int_pk_to_autofield_pk', |
| 90 | + 'schema.tests.SchemaTests.test_alter_int_pk_to_bigautofield_pk', |
| 91 | + 'schema.tests.SchemaTests.test_alter_pk_with_self_referential_field', |
| 92 | + 'schema.tests.SchemaTests.test_no_db_constraint_added_during_primary_key_change', |
| 93 | + 'schema.tests.SchemaTests.test_remove_field_check_does_not_remove_meta_constraints', |
| 94 | + 'schema.tests.SchemaTests.test_remove_field_unique_does_not_remove_meta_constraints', |
| 95 | + 'schema.tests.SchemaTests.test_text_field_with_db_index', |
| 96 | + 'schema.tests.SchemaTests.test_unique_together_with_fk', |
| 97 | + 'schema.tests.SchemaTests.test_unique_together_with_fk_with_existing_index', |
| 98 | + 'aggregation.tests.AggregateTestCase.test_count_star', |
| 99 | + 'aggregation_regress.tests.AggregationTests.test_values_list_annotation_args_ordering', |
| 100 | + 'constraints.tests.CheckConstraintTests.test_database_constraint', |
| 101 | + 'constraints.tests.CheckConstraintTests.test_name', |
| 102 | + 'constraints.tests.UniqueConstraintTests.test_name', |
| 103 | + 'constraints.tests.UniqueConstraintTests.test_database_constraint', |
| 104 | + 'datatypes.tests.DataTypesTestCase.test_error_on_timezone', |
| 105 | + 'db_functions.math.test_degrees.DegreesTests.test_integer', |
| 106 | + 'db_functions.math.test_power.PowerTests.test_integer', |
| 107 | + 'db_functions.math.test_radians.RadiansTests.test_integer', |
| 108 | + 'db_functions.text.test_pad.PadTests.test_pad', |
| 109 | + 'db_functions.text.test_replace.ReplaceTests.test_case_sensitive', |
| 110 | + 'expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_right_shift_operator', |
| 111 | + 'expressions.tests.FTimeDeltaTests.test_invalid_operator', |
| 112 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_raises_error_when_fixture_has_invalid_foreign_key', |
| 113 | + 'inspectdb.tests.InspectDBTestCase.test_introspection_errors', |
| 114 | + 'invalid_models_tests.test_ordinary_fields.TextFieldTests.test_max_length_warning', |
| 115 | + 'model_indexes.tests.IndexesTests.test_db_tablespace', |
| 116 | + 'ordering.tests.OrderingTests.test_deprecated_values_annotate', |
| 117 | + 'queries.test_qs_combinators.QuerySetSetOperationTests.test_limits', |
| 118 | + 'backends.tests.BackendTestCase.test_unicode_password', |
| 119 | + 'backends.tests.FkConstraintsTests.test_disable_constraint_checks_context_manager', |
| 120 | + 'backends.tests.FkConstraintsTests.test_disable_constraint_checks_manually', |
| 121 | + 'introspection.tests.IntrospectionTests.test_get_table_description_types', |
| 122 | + 'migrations.test_commands.MigrateTests.test_migrate_syncdb_app_label', |
| 123 | + 'migrations.test_commands.MigrateTests.test_migrate_syncdb_deferred_sql_executed_with_schemaeditor', |
| 124 | + 'migrations.test_operations.OperationTests.test_alter_field_pk_fk', |
| 125 | + 'migrations.test_operations.OperationTests.test_create_model_with_partial_unique_constraint', |
| 126 | + 'migrations.test_operations.OperationTests.test_rename_field', |
| 127 | + 'schema.tests.SchemaTests.test_add_foreign_key_quoted_db_table', |
| 128 | + 'schema.tests.SchemaTests.test_unique_and_reverse_m2m', |
| 129 | + 'schema.tests.SchemaTests.test_unique_no_unnecessary_fk_drops', |
| 130 | + 'select_for_update.tests.SelectForUpdateTests.test_for_update_after_from', |
| 131 | + 'backends.tests.LastExecutedQueryTest.test_last_executed_query', |
| 132 | + 'constraints.tests.CheckConstraintTests.test_abstract_name', |
| 133 | + 'constraints.tests.CheckConstraintTests.test_name', |
| 134 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup', |
| 135 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_greaterthan_lookup', |
| 136 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_lessthan_lookup', |
| 137 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_exact_lookup', |
| 138 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_greaterthan_lookup', |
| 139 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_lessthan_lookup', |
| 140 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_ambiguous_and_invalid_times', |
| 141 | + 'delete.tests.DeletionTests.test_only_referenced_fields_selected', |
| 142 | + 'queries.test_db_returning.ReturningValuesTests.test_insert_returning', |
| 143 | + 'queries.test_db_returning.ReturningValuesTests.test_insert_returning_non_integer', |
| 144 | + 'backends.tests.BackendTestCase.test_queries', |
| 145 | + 'introspection.tests.IntrospectionTests.test_smallautofield', |
| 146 | + 'schema.tests.SchemaTests.test_inline_fk', |
| 147 | + 'aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_exists', |
| 148 | + 'aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_values_collision', |
| 149 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func_with_timezone', |
| 150 | + 'db_functions.text.test_md5.MD5Tests.test_basic', |
| 151 | + 'db_functions.text.test_md5.MD5Tests.test_transform', |
| 152 | + 'db_functions.text.test_sha1.SHA1Tests.test_basic', |
| 153 | + 'db_functions.text.test_sha1.SHA1Tests.test_transform', |
| 154 | + 'db_functions.text.test_sha224.SHA224Tests.test_basic', |
| 155 | + 'db_functions.text.test_sha224.SHA224Tests.test_transform', |
| 156 | + 'db_functions.text.test_sha256.SHA256Tests.test_basic', |
| 157 | + 'db_functions.text.test_sha256.SHA256Tests.test_transform', |
| 158 | + 'db_functions.text.test_sha384.SHA384Tests.test_basic', |
| 159 | + 'db_functions.text.test_sha384.SHA384Tests.test_transform', |
| 160 | + 'db_functions.text.test_sha512.SHA512Tests.test_basic', |
| 161 | + 'db_functions.text.test_sha512.SHA512Tests.test_transform', |
| 162 | + 'expressions.tests.BasicExpressionsTests.test_case_in_filter_if_boolean_output_field', |
| 163 | + 'expressions.tests.BasicExpressionsTests.test_subquery_in_filter', |
| 164 | + 'expressions.tests.FTimeDeltaTests.test_date_subquery_subtraction', |
| 165 | + 'expressions.tests.FTimeDeltaTests.test_datetime_subquery_subtraction', |
| 166 | + 'expressions.tests.FTimeDeltaTests.test_time_subquery_subtraction', |
| 167 | + 'migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_with_to_field_target_type_change', |
| 168 | + 'migrations.test_operations.OperationTests.test_autofield__bigautofield_foreignfield_growth', |
| 169 | + 'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth', |
| 170 | + 'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth', |
| 171 | + 'schema.tests.SchemaTests.test_alter_auto_field_quoted_db_column', |
| 172 | + 'schema.tests.SchemaTests.test_alter_autofield_pk_to_bigautofield_pk_sequence_owner', |
| 173 | + 'schema.tests.SchemaTests.test_alter_autofield_pk_to_smallautofield_pk_sequence_owner', |
| 174 | + 'schema.tests.SchemaTests.test_alter_primary_key_quoted_db_table', |
| 175 | + 'schema.tests.SchemaTests.test_alter_smallint_pk_to_smallautofield_pk' |
| 176 | + ] |
0 commit comments