diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-28 17:50:19 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-28 17:50:19 -0500 |
commit | 1eb92e50d9845642940e7ab20906384bebec85fb (patch) | |
tree | c34b28805ce26c44c2be1e94f269d7cb44cf386c /test/requirements.py | |
parent | cac7320eeb16e62f347dbf009a1b18edff7faa18 (diff) | |
download | sqlalchemy-1eb92e50d9845642940e7ab20906384bebec85fb.tar.gz |
- apply a similar fix for floats to mssql+pyodbc as we did to firebird
- wrangle through osx+pyodbc+freetds to get at least test_suite to pass again
with mssql+pyodbc. invovled adding some silly requirements
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/requirements.py b/test/requirements.py index b90591a80..d26eb86cb 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -570,10 +570,20 @@ class DefaultRequirements(SuiteRequirements): ("mysql+oursql", None, None, "Floating point error"), ("firebird", None, None, "Firebird still has FP inaccuracy even " - "with only four decimal places") + "with only four decimal places"), + ('mssql+pyodbc', None, None, + 'mssql+pyodbc has FP inaccuracy even with ' + 'only four decimal places ' + ) ]) @property + def fetch_null_from_numeric(self): + return skip_if( + ("mssql+pyodbc", None, None, "crashes due to bug #351"), + ) + + @property def python2(self): return skip_if( lambda: sys.version_info >= (3,), |