summaryrefslogtreecommitdiff
path: root/tests/test_green.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_green.py')
-rwxr-xr-xtests/test_green.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_green.py b/tests/test_green.py
index 49f6cf7..f511f3e 100755
--- a/tests/test_green.py
+++ b/tests/test_green.py
@@ -68,6 +68,7 @@ class GreenTestCase(ConnectingTestCase):
return stub
@slow
+ @skip_if_crdb("flush on write flakey")
def test_flush_on_write(self):
# a very large query requires a flush loop to be sent to the backend
conn = self.conn
@@ -123,9 +124,9 @@ class GreenTestCase(ConnectingTestCase):
cur.execute, "copy (select 1) to stdout")
@slow
- @skip_if_crdb
+ @skip_if_crdb("notice")
@skip_before_postgres(9, 0)
- def test_non_block_after_notification(self):
+ def test_non_block_after_notice(self):
def wait(conn):
while 1:
state = conn.poll()
@@ -218,7 +219,7 @@ class CallbackErrorTestCase(ConnectingTestCase):
self.fail("you should have had a success or an error by now")
- @skip_if_crdb
+ @skip_if_crdb("named cursor")
def test_errors_named_cursor(self):
for i in range(100):
self.to_error = None