summaryrefslogtreecommitdiff
path: root/tests/requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/requirements.py')
-rw-r--r--tests/requirements.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/requirements.py b/tests/requirements.py
index 1a100dd..dbbb88a 100644
--- a/tests/requirements.py
+++ b/tests/requirements.py
@@ -138,9 +138,15 @@ class DefaultRequirements(SuiteRequirements):
def reflects_indexes_w_sorting(self):
# TODO: figure out what's happening on the SQLAlchemy side
# when we reflect an index that has asc() / desc() on the column
+ # Tracked by https://github.com/sqlalchemy/sqlalchemy/issues/9597
return exclusions.fails_on(["oracle"])
@property
+ def reflects_indexes_column_sorting(self):
+ "Actually reflect column_sorting on the indexes"
+ return exclusions.only_on(["postgresql"])
+
+ @property
def long_names(self):
if sqla_compat.sqla_14:
return exclusions.skip_if("oracle<18")