diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-25 16:39:44 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-25 16:39:44 -0400 |
commit | fe878f5aff1cb17fdf1f13aba1d13f008da0ef4e (patch) | |
tree | 27a1efb8d5a127b8a64efeffd1ed909fd06a941b /test/requirements.py | |
parent | 3c0efe508f4b02ca69db1f4855f5bfeb936ac9e9 (diff) | |
download | sqlalchemy-fe878f5aff1cb17fdf1f13aba1d13f008da0ef4e.tar.gz |
- more pg8000 tests passing
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 10 |
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.""" |