diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-05 17:34:02 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-06-05 17:34:02 -0400 |
| commit | 4e6ec9eef4e65c6efabae36b2307f2ad167977da (patch) | |
| tree | f8b2c9f7ef4b4053a2f0ab6a4847d597d72838f6 /test/dialect/postgresql/test_query.py | |
| parent | 4c90f355fd552e70009ffcdf3fdde9f3653e337e (diff) | |
| download | sqlalchemy-4e6ec9eef4e65c6efabae36b2307f2ad167977da.tar.gz | |
- Repaired some typing and test issues related to the pypy
psycopg2cffi dialect, in particular that the current 2.7.0 version
does not have native support for the JSONB type. The version detection
for psycopg2 features has been tuned into a specific sub-version
for psycopg2cffi. Additionally, test coverage has been enabled
for the full series of psycopg2 features under psycopg2cffi.
fixes #3439
Diffstat (limited to 'test/dialect/postgresql/test_query.py')
| -rw-r--r-- | test/dialect/postgresql/test_query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_query.py b/test/dialect/postgresql/test_query.py index 27cb958fd..4a33644e0 100644 --- a/test/dialect/postgresql/test_query.py +++ b/test/dialect/postgresql/test_query.py @@ -549,7 +549,7 @@ class InsertTest(fixtures.TestBase, AssertsExecutionResults): class ServerSideCursorsTest(fixtures.TestBase, AssertsExecutionResults): - __only_on__ = 'postgresql+psycopg2' + __requires__ = 'psycopg2_compatibility', def _fixture(self, server_side_cursors): self.engine = engines.testing_engine( |
