summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
authorTony Locke <tlocke@tlocke.org.uk>2014-05-11 20:58:24 +0100
committerTony Locke <tlocke@tlocke.org.uk>2014-05-21 19:17:41 +0100
commit996de05ee96b62943efb4bd9495127b40aaba4d5 (patch)
treeba3055d61dcc159760a986d4f347c37386192542 /test/requirements.py
parentfc4e113cf1ee0c1c4ca636df146aaee8522c92d5 (diff)
downloadsqlalchemy-996de05ee96b62943efb4bd9495127b40aaba4d5.tar.gz
Add postgresql+pg8000 to floats_to_four_decimals
pg8000 uses binary transfer of floats and so accuracy is lost for floats that can't be represented exactly in binary.
Diffstat (limited to 'test/requirements.py')
-rw-r--r--test/requirements.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/requirements.py b/test/requirements.py
index 8576f2e71..09f973543 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -608,8 +608,11 @@ class DefaultRequirements(SuiteRequirements):
),
('mssql+pymssql', None, None,
'mssql+pymssql has FP inaccuracy even with '
- 'only four decimal places '
- )
+ 'only four decimal places '),
+ (
+ 'postgresql+pg8000', None, None,
+ 'postgresql+pg8000 has FP inaccuracy even with '
+ 'only four decimal places '),
])
@property