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_connection.py | |
parent | 8a2e9eabcae94013b4d5987b4bc31487efdef102 (diff) | |
download | psycopg2-fast-test.tar.gz |
Further skipping of slow testsfast-test
Diffstat (limited to 'tests/test_connection.py')
-rwxr-xr-x | tests/test_connection.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_connection.py b/tests/test_connection.py index a5b5c41..1ea00da 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -125,6 +125,7 @@ class ConnectionTests(ConnectingTestCase): self.assert_('table3' in conn.notices[2]) self.assert_('table4' in conn.notices[3]) + @slow def test_notices_limited(self): conn = self.conn cur = conn.cursor() @@ -138,6 +139,7 @@ class ConnectionTests(ConnectingTestCase): self.assertEqual(50, len(conn.notices)) self.assert_('table99' in conn.notices[-1], conn.notices[-1]) + @slow def test_notices_deque(self): from collections import deque |