summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/engine/test_reconnect.py19
1 files changed, 6 insertions, 13 deletions
diff --git a/test/engine/test_reconnect.py b/test/engine/test_reconnect.py
index 9aecb81a9..b176c05ea 100644
--- a/test/engine/test_reconnect.py
+++ b/test/engine/test_reconnect.py
@@ -617,19 +617,12 @@ class InvalidateDuringResultTest(fixtures.TestBase):
meta.drop_all()
engine.dispose()
- @testing.fails_on('+cymysql',
- "Buffers the result set and doesn't check for "
- "connection close")
- @testing.fails_on('+pymysql',
- "Buffers the result set and doesn't check for "
- "connection close")
- @testing.fails_on('+mysqldb',
- "Buffers the result set and doesn't check for "
- "connection close")
- @testing.fails_on('+pg8000',
- "Buffers the result set and doesn't check for "
- "connection close")
- @testing.fails_on('+informixdb',
+ @testing.fails_if([
+ '+mysqlconnector', '+mysqldb'
+ '+cymysql', '+pymysql', '+pg8000'
+ ], "Buffers the result set and doesn't check for "
+ "connection close")
+ @testing.fails_if('+informixdb',
"Wrong error thrown, fix in informixdb?")
def test_invalidate_on_results(self):
conn = engine.connect()