summaryrefslogtreecommitdiff
path: root/tests/test_green.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_green.py')
-rwxr-xr-xtests/test_green.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_green.py b/tests/test_green.py
index e56ce58..49f6cf7 100755
--- a/tests/test_green.py
+++ b/tests/test_green.py
@@ -33,6 +33,7 @@ import psycopg2.extras
from psycopg2.extensions import POLL_OK, POLL_READ, POLL_WRITE
from .testutils import ConnectingTestCase, skip_before_postgres, slow
+from .testutils import skip_if_crdb
class ConnectionStub(object):
@@ -122,6 +123,7 @@ class GreenTestCase(ConnectingTestCase):
cur.execute, "copy (select 1) to stdout")
@slow
+ @skip_if_crdb
@skip_before_postgres(9, 0)
def test_non_block_after_notification(self):
def wait(conn):
@@ -216,6 +218,7 @@ class CallbackErrorTestCase(ConnectingTestCase):
self.fail("you should have had a success or an error by now")
+ @skip_if_crdb
def test_errors_named_cursor(self):
for i in range(100):
self.to_error = None