mirror of
https://github.com/django/django.git
synced 2025-08-06 11:58:26 +00:00
Fixed #32178 -- Allowed database backends to skip tests and mark expected failures.
Co-authored-by: Tim Graham <timograham@gmail.com>
This commit is contained in:
parent
5ce31d6a71
commit
275dd4ebba
29 changed files with 248 additions and 87 deletions
|
@ -59,6 +59,12 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||
has_json_operators = True
|
||||
json_key_contains_list_matching_requires_list = True
|
||||
|
||||
django_test_skips = {
|
||||
'opclasses are PostgreSQL only.': {
|
||||
'indexes.tests.SchemaIndexesNotPostgreSQLTests.test_create_index_ignores_opclasses',
|
||||
},
|
||||
}
|
||||
|
||||
@cached_property
|
||||
def test_collations(self):
|
||||
# PostgreSQL < 10 doesn't support ICU collations.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue