Skip to content

Commit

Permalink
ci: add expressions_case tests
Browse files Browse the repository at this point in the history
fixes #353
  • Loading branch information
timgraham committed Mar 19, 2020
1 parent 859c5ff commit ba2b967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 59 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -22,8 +22,8 @@ env:
- DJANGO_TEST_APPS="defer_regress"
- DJANGO_TEST_APPS="delete_regress"
- DJANGO_TEST_APPS="db_functions db_utils"
- DJANGO_TEST_APPS="distinct_on_fields empty"
- DJANGO_TEST_APPS="expressions expressions_window"
- DJANGO_TEST_APPS="distinct_on_fields empty expressions"
- DJANGO_TEST_APPS="expressions_case expressions_window"
- DJANGO_TEST_APPS="extra_regress field_defaults field_subclassing file_storage file_uploads"
- DJANGO_TEST_APPS="fixtures fixtures_model_package from_db_value"
- DJANGO_TEST_APPS="get_earliest_or_latest get_object_or_404"
Expand Down
57 changes: 0 additions & 57 deletions django_spanner/features.py
Expand Up @@ -77,63 +77,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
'aggregation_regress.tests.AggregationTests.test_ticket_11293',
'defer_regress.tests.DeferRegressionTest.test_ticket_23270',
'distinct_on_fields.tests.DistinctOnTests.test_basic_distinct_on',
'expressions_case.tests.CaseDocumentationExamples.test_conditional_update_example',
'expressions_case.tests.CaseDocumentationExamples.test_simple_example',
'expressions_case.tests.CaseExpressionTests.test_annotate',
'expressions_case.tests.CaseExpressionTests.test_annotate_exclude',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_condition',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_value',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_condition',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_value',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_condition',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_value',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_in_clause',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_condition',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_value',
'expressions_case.tests.CaseExpressionTests.test_annotate_without_default',
'expressions_case.tests.CaseExpressionTests.test_combined_expression',
'expressions_case.tests.CaseExpressionTests.test_combined_q_object',
'expressions_case.tests.CaseExpressionTests.test_filter',
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_condition',
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_value',
'expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_condition',
'expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_condition',
'expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_value',
'expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_condition',
'expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_predicate',
'expressions_case.tests.CaseExpressionTests.test_filter_without_default',
'expressions_case.tests.CaseExpressionTests.test_in_subquery',
'expressions_case.tests.CaseExpressionTests.test_lookup_different_fields',
'expressions_case.tests.CaseExpressionTests.test_lookup_in_condition',
'expressions_case.tests.CaseExpressionTests.test_update',
'expressions_case.tests.CaseExpressionTests.test_update_big_integer',
'expressions_case.tests.CaseExpressionTests.test_update_decimal',
'expressions_case.tests.CaseExpressionTests.test_update_duration',
'expressions_case.tests.CaseExpressionTests.test_update_email',
'expressions_case.tests.CaseExpressionTests.test_update_file',
'expressions_case.tests.CaseExpressionTests.test_update_file_path',
'expressions_case.tests.CaseExpressionTests.test_update_fk',
'expressions_case.tests.CaseExpressionTests.test_update_float',
'expressions_case.tests.CaseExpressionTests.test_update_generic_ip_address',
'expressions_case.tests.CaseExpressionTests.test_update_image',
'expressions_case.tests.CaseExpressionTests.test_update_null_boolean',
'expressions_case.tests.CaseExpressionTests.test_update_null_boolean_old',
'expressions_case.tests.CaseExpressionTests.test_update_positive_integer',
'expressions_case.tests.CaseExpressionTests.test_update_positive_small_integer',
'expressions_case.tests.CaseExpressionTests.test_update_slug',
'expressions_case.tests.CaseExpressionTests.test_update_small_integer',
'expressions_case.tests.CaseExpressionTests.test_update_text',
'expressions_case.tests.CaseExpressionTests.test_update_time',
'expressions_case.tests.CaseExpressionTests.test_update_url',
'expressions_case.tests.CaseExpressionTests.test_update_uuid',
'expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_condition',
'expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_value',
'expressions_case.tests.CaseExpressionTests.test_update_without_default',
'extra_regress.tests.ExtraRegressTests.test_regression_7314_7372'
'generic_relations_regress.tests.GenericRelationTests.test_annotate',
'get_earliest_or_latest.tests.TestFirstLast',
Expand Down

0 comments on commit ba2b967

Please sign in to comment.