From 4cc8afd3b1526b621e4f6d2f63007d3c46b860f0 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 2 Feb 2017 02:58:22 +0000 Subject: Further skipping of slow tests --- tests/test_async.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_async.py') diff --git a/tests/test_async.py b/tests/test_async.py index b379bae..e7fc1a9 100755 --- a/tests/test_async.py +++ b/tests/test_async.py @@ -97,6 +97,7 @@ class AsyncTests(ConnectingTestCase): self.assertFalse(self.conn.isexecuting()) self.assertEquals(cur.fetchone()[0], "a") + @slow @skip_before_postgres(8, 2) def test_async_callproc(self): cur = self.conn.cursor() @@ -107,6 +108,7 @@ class AsyncTests(ConnectingTestCase): self.assertFalse(self.conn.isexecuting()) self.assertEquals(cur.fetchall()[0][0], '') + @slow def test_async_after_async(self): cur = self.conn.cursor() cur2 = self.conn.cursor() -- cgit v1.2.1