diff options
author | Brian Jarrett <celttechie@gmail.com> | 2014-07-10 16:31:07 -0600 |
---|---|---|
committer | Brian Jarrett <celttechie@gmail.com> | 2014-07-10 16:31:07 -0600 |
commit | 600e6bfb3fa261b98b1ae7237080c8f5e757d09a (patch) | |
tree | a957bbaad2dbd1e6a9fffe691b2dd9daf63a4328 | |
parent | 304e5b2a11701442af6d35ebc22c5b84454197d9 (diff) | |
parent | 0190ede10767ed455255067cac2d309f070cf70c (diff) | |
download | sqlalchemy-pr/104.tar.gz |
Merge branch 'master' of https://github.com/celttechie/sqlalchemypr/104
Pulling from new fork of SQLAlchemy
-rw-r--r-- | test/dialect/mysql/test_types.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 011215492..173520216 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -154,11 +154,10 @@ class TypesTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL): res ) - # TODO: how on earth does mysqlconnector pass the precision numeric - # testse in the generic suite when it fails this?? - @testing.fails_on( - "mysql+mysqlconnector", - "unknown issue, possible bug in mysqlconnector") + @testing.fails_if( + lambda: testing.against("mysql+mysqlconnector") + and not util.py3k, + "bug in mysqlconnector; http://bugs.mysql.com/bug.php?id=73266") @testing.provide_metadata def test_precision_float_roundtrip(self): t = Table('t', self.metadata, |