diff options
Diffstat (limited to 'tests/test_cancel.py')
-rwxr-xr-x | tests/test_cancel.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_cancel.py b/tests/test_cancel.py index a8eb750..cb08e5f 100755 --- a/tests/test_cancel.py +++ b/tests/test_cancel.py @@ -30,7 +30,7 @@ import psycopg2.extensions from psycopg2 import extras from testconfig import dsn -from testutils import unittest, ConnectingTestCase, skip_before_postgres +from testutils import unittest, ConnectingTestCase, skip_before_postgres, slow class CancelTests(ConnectingTestCase): @@ -48,6 +48,7 @@ class CancelTests(ConnectingTestCase): def test_empty_cancel(self): self.conn.cancel() + @slow @skip_before_postgres(8, 2) def test_cancel(self): errors = [] |