summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-25 16:39:44 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-25 16:39:44 -0400
commitfe878f5aff1cb17fdf1f13aba1d13f008da0ef4e (patch)
tree27a1efb8d5a127b8a64efeffd1ed909fd06a941b /test/requirements.py
parent3c0efe508f4b02ca69db1f4855f5bfeb936ac9e9 (diff)
downloadsqlalchemy-fe878f5aff1cb17fdf1f13aba1d13f008da0ef4e.tar.gz
- more pg8000 tests passing
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."""