summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-09-20 13:56:17 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-09-20 13:56:17 -0400
commit0c90cac2c37453a6688d9c1da62bbfb0bfa13d02 (patch)
tree78c82b0a9a59a986c9df9dc0580cd81c595ce658
parent5af3c903368e9a437a6ceafce5dc993433420cc7 (diff)
downloadsqlalchemy-0c90cac2c37453a6688d9c1da62bbfb0bfa13d02.tar.gz
- disable two phase testing for mysql entirely, build servers
have no time to deal with MySQL 5.7's issues Change-Id: Ic5f4e5b0aff1b4b5210bc7b5da203f536561e585
-rw-r--r--test/requirements.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/requirements.py b/test/requirements.py
index 3a2fcf03b..58395e70c 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -436,8 +436,9 @@ class DefaultRequirements(SuiteRequirements):
no_support('postgresql+zxjdbc',
'FIXME: JDBC driver confuses the transaction state, may '
'need separate XA implementation'),
- exclude('mysql', '<', (5, 0, 3),
- 'two-phase xact not supported by database'),
+ no_support('mysql',
+ 'recent MySQL communiity editions have too many issues '
+ '(late 2016), disabling for now'),
])
@property