summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/requirements.py')
-rw-r--r--test/requirements.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py
index f91c8f68a..024f32c54 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -365,6 +365,16 @@ class DefaultRequirements(SuiteRequirements):
])
@property
+ def graceful_disconnects(self):
+ """Target driver must raise a DBAPI-level exception, such as
+ InterfaceError, when the underlying connection has been closed
+ and the execute() method is called.
+ """
+ return fails_on(
+ "postgresql+pg8000", "Driver crashes"
+ )
+
+ @property
def views(self):
"""Target database must support VIEWs."""