Skip to content

Commit

Permalink
Skipping cursor factory check on psycopg2ct
Browse files Browse the repository at this point in the history
  • Loading branch information
haizaar authored and friedcell committed Feb 24, 2014
1 parent 99c3291 commit 3272dbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,9 @@ def run_and_check_dict(self, db):

def test_cursor_factory(self):
"""Testing that cursor_factory parameter is properly propagated"""
if psycopg2_impl == "psycopg2ct":
# Known bug: https://github.com/mvantellingen/psycopg2-ctypes/issues/31
return
db = self.build_pool(cur_factory=RealDictCursor)
self.run_and_check_dict(db)

Expand Down

0 comments on commit 3272dbe

Please sign in to comment.