diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-01-26 18:02:46 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-01-26 18:43:19 -0500 |
commit | a826ff366bf979bcbb4f075d3c33540232b91873 (patch) | |
tree | 30529e6769a2994d096a5d45ac72e7851fb6a138 /test/requirements.py | |
parent | 226bd8d7077c3557e5fc3b7ad512c4ad59b471d1 (diff) | |
download | sqlalchemy-a826ff366bf979bcbb4f075d3c33540232b91873.tar.gz |
- additional test adjustments for pypy / psycopg2cffi. This
consists mainly of adjusting fixtures to ensure connections are closed
explicitly. psycopg2cffi also handles unicode bind parameter
names differently than psycopg2, and seems to possibly have a little less
control over floating point values at least in one test which is
marked as a "fail", though will see if it runs differently on linux
than osx..
- changelog for psycopg2cffi, fixes #3052
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py index 6b8ba504c..89fc108b9 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -656,6 +656,10 @@ class DefaultRequirements(SuiteRequirements): 'postgresql+pg8000', None, None, 'postgresql+pg8000 has FP inaccuracy even with ' 'only four decimal places '), + ( + 'postgresql+psycopg2cffi', None, None, + 'postgresql+psycopg2cffi has FP inaccuracy even with ' + 'only four decimal places '), ]) @property |