diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:58:22 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:58:22 +0000 |
commit | 4cc8afd3b1526b621e4f6d2f63007d3c46b860f0 (patch) | |
tree | fe32e4a0acb0cb912d78e7bd8e0ace2146a60ec3 /tests/test_async.py | |
parent | 8a2e9eabcae94013b4d5987b4bc31487efdef102 (diff) | |
download | psycopg2-fast-test.tar.gz |
Further skipping of slow testsfast-test
Diffstat (limited to 'tests/test_async.py')
-rwxr-xr-x | tests/test_async.py | 2 |
1 files changed, 2 insertions, 0 deletions
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() |