|
13 | 13 | 'testapp',
|
14 | 14 | )
|
15 | 15 |
|
| 16 | + |
| 17 | +TEST_RUNNER = 'testapp.runner.ExcludeTestSuiteRunner' |
| 18 | +EXCLUDED_TESTS = ( |
| 19 | + 'aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_exists', |
| 20 | + 'aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_values_collision', |
| 21 | + 'aggregation.tests.AggregateTestCase.test_count_star', |
| 22 | + 'aggregation.tests.AggregateTestCase.test_distinct_on_aggregate', |
| 23 | + 'aggregation.tests.AggregateTestCase.test_expression_on_aggregation', |
| 24 | + 'aggregation_regress.tests.AggregationTests.test_annotated_conditional_aggregate', |
| 25 | + 'aggregation_regress.tests.AggregationTests.test_annotation_with_value', |
| 26 | + 'aggregation_regress.tests.AggregationTests.test_more_more', |
| 27 | + 'aggregation_regress.tests.AggregationTests.test_more_more_more', |
| 28 | + 'aggregation_regress.tests.AggregationTests.test_ticket_11293', |
| 29 | + 'aggregation_regress.tests.AggregationTests.test_values_list_annotation_args_ordering', |
| 30 | + 'annotations.tests.NonAggregateAnnotationTestCase.test_annotate_exists', |
| 31 | + 'annotations.tests.NonAggregateAnnotationTestCase.test_combined_expression_annotation_with_aggregation', |
| 32 | + 'backends.tests.BackendTestCase.test_queries', |
| 33 | + 'backends.tests.BackendTestCase.test_unicode_password', |
| 34 | + 'backends.tests.FkConstraintsTests.test_disable_constraint_checks_context_manager', |
| 35 | + 'backends.tests.FkConstraintsTests.test_disable_constraint_checks_manually', |
| 36 | + 'backends.tests.LastExecutedQueryTest.test_last_executed_query', |
| 37 | + 'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields', |
| 38 | + 'constraints.tests.CheckConstraintTests.test_abstract_name', |
| 39 | + 'constraints.tests.CheckConstraintTests.test_database_constraint', |
| 40 | + 'constraints.tests.CheckConstraintTests.test_database_constraint_expression', |
| 41 | + 'constraints.tests.CheckConstraintTests.test_database_constraint_expressionwrapper', |
| 42 | + 'constraints.tests.CheckConstraintTests.test_name', |
| 43 | + 'constraints.tests.UniqueConstraintTests.test_database_constraint', |
| 44 | + 'constraints.tests.UniqueConstraintTests.test_database_constraint_with_condition', |
| 45 | + 'constraints.tests.UniqueConstraintTests.test_name', |
| 46 | + 'custom_lookups.tests.BilateralTransformTests.test_transform_order_by', |
| 47 | + 'datatypes.tests.DataTypesTestCase.test_error_on_timezone', |
| 48 | + 'datetimes.tests.DateTimesTests.test_datetimes_ambiguous_and_invalid_times', |
| 49 | + 'datetimes.tests.DateTimesTests.test_datetimes_returns_available_dates_for_given_scope_and_given_field', |
| 50 | + 'datetimes.tests.DateTimesTests.test_related_model_traverse', |
| 51 | + 'db_functions.comparison.test_cast.CastTests.test_cast_to_integer', |
| 52 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_func', |
| 53 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_iso_weekday_func', |
| 54 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup', |
| 55 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_greaterthan_lookup', |
| 56 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_lessthan_lookup', |
| 57 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_func', |
| 58 | + 'db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_week_func', |
| 59 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func', |
| 60 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func_with_timezone', |
| 61 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_iso_weekday_func', |
| 62 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_exact_lookup', |
| 63 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_greaterthan_lookup', |
| 64 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_lessthan_lookup', |
| 65 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_ambiguous_and_invalid_times', |
| 66 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_func_with_timezone', |
| 67 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_none', |
| 68 | + 'db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_week_func', |
| 69 | + 'db_functions.math.test_degrees.DegreesTests.test_integer', |
| 70 | + 'db_functions.math.test_mod.ModTests.test_float', |
| 71 | + 'db_functions.math.test_power.PowerTests.test_integer', |
| 72 | + 'db_functions.math.test_radians.RadiansTests.test_integer', |
| 73 | + 'db_functions.text.test_md5', |
| 74 | + 'db_functions.text.test_pad.PadTests.test_pad', |
| 75 | + 'db_functions.text.test_replace.ReplaceTests.test_case_sensitive', |
| 76 | + 'db_functions.text.test_sha1', |
| 77 | + 'db_functions.text.test_sha224', |
| 78 | + 'db_functions.text.test_sha256', |
| 79 | + 'db_functions.text.test_sha384', |
| 80 | + 'db_functions.text.test_sha512', |
| 81 | + 'dbshell.tests.DbshellCommandTestCase.test_command_missing', |
| 82 | + 'defer_regress.tests.DeferRegressionTest.test_ticket_23270', |
| 83 | + 'delete.tests.DeletionTests.test_only_referenced_fields_selected', |
| 84 | + 'expressions.tests.BasicExpressionsTests.test_case_in_filter_if_boolean_output_field', |
| 85 | + 'expressions.tests.BasicExpressionsTests.test_filtering_on_annotate_that_uses_q', |
| 86 | + 'expressions.tests.BasicExpressionsTests.test_order_by_exists', |
| 87 | + 'expressions.tests.BasicExpressionsTests.test_subquery_in_filter', |
| 88 | + 'expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_right_shift_operator', |
| 89 | + 'expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor', |
| 90 | + 'expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor_null', |
| 91 | + 'expressions.tests.ExpressionOperatorTests.test_righthand_power', |
| 92 | + 'expressions.tests.FTimeDeltaTests.test_date_subquery_subtraction', |
| 93 | + 'expressions.tests.FTimeDeltaTests.test_datetime_subquery_subtraction', |
| 94 | + 'expressions.tests.FTimeDeltaTests.test_datetime_subtraction_microseconds', |
| 95 | + 'expressions.tests.FTimeDeltaTests.test_duration_with_datetime_microseconds', |
| 96 | + 'expressions.tests.FTimeDeltaTests.test_invalid_operator', |
| 97 | + 'expressions.tests.FTimeDeltaTests.test_time_subquery_subtraction', |
| 98 | + 'expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_in_lookups_join_choice', |
| 99 | + 'expressions_case.tests.CaseExpressionTests.test_annotate_with_in_clause', |
| 100 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_raises_error_when_fixture_has_invalid_foreign_key', |
| 101 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_with_m2m_to_self', |
| 102 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_with_valid_fixture_dirs', |
| 103 | + 'fixtures_regress.tests.TestFixtures.test_loaddata_works_when_fixture_has_forward_refs', |
| 104 | + 'fixtures_regress.tests.TestFixtures.test_path_containing_dots', |
| 105 | + 'fixtures_regress.tests.TestFixtures.test_pg_sequence_resetting_checks', |
| 106 | + 'fixtures_regress.tests.TestFixtures.test_pretty_print_xml', |
| 107 | + 'fixtures_regress.tests.TestFixtures.test_proxy_model_included', |
| 108 | + 'fixtures_regress.tests.TestFixtures.test_relative_path', |
| 109 | + 'fixtures_regress.tests.TestFixtures.test_relative_path_in_fixture_dirs', |
| 110 | + 'fixtures_regress.tests.TestFixtures.test_ticket_20820', |
| 111 | + 'fixtures_regress.tests.TestFixtures.test_ticket_22421', |
| 112 | + 'get_or_create.tests.UpdateOrCreateTransactionTests.test_creation_in_transaction', |
| 113 | + 'indexes.tests.PartialIndexTests.test_multiple_conditions', |
| 114 | + 'indexes.tests.SchemaIndexesNotPostgreSQLTests.test_create_index_ignores_opclasses', |
| 115 | + 'inspectdb.tests.InspectDBTestCase.test_introspection_errors', |
| 116 | + 'inspectdb.tests.InspectDBTestCase.test_json_field', |
| 117 | + 'inspectdb.tests.InspectDBTestCase.test_number_field_types', |
| 118 | + 'introspection.tests.IntrospectionTests.test_get_constraints', |
| 119 | + 'introspection.tests.IntrospectionTests.test_get_table_description_types', |
| 120 | + 'introspection.tests.IntrospectionTests.test_smallautofield', |
| 121 | + 'invalid_models_tests.test_ordinary_fields.TextFieldTests.test_max_length_warning', |
| 122 | + 'migrate_signals.tests.MigrateSignalTests.test_migrations_only', |
| 123 | + 'model_fields.test_integerfield.PositiveBigIntegerFieldTests', |
| 124 | + 'model_fields.test_jsonfield', |
| 125 | + 'model_indexes.tests.IndexesTests.test_db_tablespace', |
| 126 | + 'ordering.tests.OrderingTests.test_deprecated_values_annotate', |
| 127 | + 'ordering.tests.OrderingTests.test_order_by_fk_attname', |
| 128 | + 'ordering.tests.OrderingTests.test_order_by_pk', |
| 129 | + 'ordering.tests.OrderingTests.test_orders_nulls_first_on_filtered_subquery', |
| 130 | + 'prefetch_related.tests.GenericRelationTests.test_prefetch_GFK_nonint_pk', |
| 131 | + 'queries.test_bulk_update.BulkUpdateNoteTests.test_set_field_to_null', |
| 132 | + 'queries.test_bulk_update.BulkUpdateTests.test_json_field', |
| 133 | + 'queries.test_db_returning', |
| 134 | + 'queries.test_qs_combinators.QuerySetSetOperationTests.test_limits', |
| 135 | + 'queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering_by_f_expression_and_alias', |
| 136 | + 'schema.tests.SchemaTests.test_add_foreign_key_quoted_db_table', |
| 137 | + 'schema.tests.SchemaTests.test_alter_auto_field_quoted_db_column', |
| 138 | + 'schema.tests.SchemaTests.test_alter_auto_field_to_char_field', |
| 139 | + 'schema.tests.SchemaTests.test_alter_auto_field_to_integer_field', |
| 140 | + 'schema.tests.SchemaTests.test_alter_autofield_pk_to_bigautofield_pk_sequence_owner', |
| 141 | + 'schema.tests.SchemaTests.test_alter_autofield_pk_to_smallautofield_pk_sequence_owner', |
| 142 | + 'schema.tests.SchemaTests.test_alter_implicit_id_to_explicit', |
| 143 | + 'schema.tests.SchemaTests.test_alter_int_pk_to_autofield_pk', |
| 144 | + 'schema.tests.SchemaTests.test_alter_int_pk_to_bigautofield_pk', |
| 145 | + 'schema.tests.SchemaTests.test_alter_pk_with_self_referential_field', |
| 146 | + 'schema.tests.SchemaTests.test_alter_primary_key_quoted_db_table', |
| 147 | + 'schema.tests.SchemaTests.test_alter_smallint_pk_to_smallautofield_pk', |
| 148 | + 'schema.tests.SchemaTests.test_char_field_pk_to_auto_field', |
| 149 | + 'schema.tests.SchemaTests.test_inline_fk', |
| 150 | + 'schema.tests.SchemaTests.test_no_db_constraint_added_during_primary_key_change', |
| 151 | + 'schema.tests.SchemaTests.test_remove_field_check_does_not_remove_meta_constraints', |
| 152 | + 'schema.tests.SchemaTests.test_remove_field_unique_does_not_remove_meta_constraints', |
| 153 | + 'schema.tests.SchemaTests.test_remove_unique_together_does_not_remove_meta_constraints', |
| 154 | + 'schema.tests.SchemaTests.test_text_field_with_db_index', |
| 155 | + 'schema.tests.SchemaTests.test_unique_and_reverse_m2m', |
| 156 | + 'schema.tests.SchemaTests.test_unique_no_unnecessary_fk_drops', |
| 157 | + 'schema.tests.SchemaTests.test_unique_together_with_fk', |
| 158 | + 'schema.tests.SchemaTests.test_unique_together_with_fk_with_existing_index', |
| 159 | + 'select_for_update.tests.SelectForUpdateTests.test_for_update_after_from', |
| 160 | +) |
| 161 | + |
16 | 162 | SECRET_KEY = "django_tests_secret_key"
|
17 | 163 |
|
18 | 164 | # Use a fast hasher to speed up tests.
|
|
0 commit comments