diff options
author | Tony Locke <tlocke@tlocke.org.uk> | 2014-07-26 16:19:09 +0100 |
---|---|---|
committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-08-02 15:29:36 +0100 |
commit | c2a00153f1a8d4591de6ebe4f75e8595d7193226 (patch) | |
tree | e1f8d5ec2496b26de4a9af855bae53afa4351d9e /test/requirements.py | |
parent | 32165f50209036a98959553e1c5e81537a091a15 (diff) | |
download | sqlalchemy-c2a00153f1a8d4591de6ebe4f75e8595d7193226.tar.gz |
With pg8000-1.9.13 passes engine/test_reconnect
The pg8000 dialect checks the text of the exception to determine if the
connection is closed. I'd (recklessly!) changed the text of the
exception in a recent version of the pg8000 driver adding capitalization
and a full stop. I've changed it back now so all works.
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/requirements.py b/test/requirements.py index e8705d145..bf9b8f526 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -367,16 +367,6 @@ 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.""" |