diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:15:15 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:15:15 +0000 |
commit | ad6506ff69ea17c11a514b964836409921f7560c (patch) | |
tree | 51cecb3485a3256b693b0113ed634edbf02dc823 /tests/test_async.py | |
parent | 26952ecee421350fd234f9390f03285a966b0d46 (diff) | |
parent | 88a21689cee0e23ea4b2a6e3b423aa0c6c29c36a (diff) | |
download | psycopg2-ad6506ff69ea17c11a514b964836409921f7560c.tar.gz |
Merge branch 'manylinux'
Diffstat (limited to 'tests/test_async.py')
-rwxr-xr-x | tests/test_async.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_async.py b/tests/test_async.py index 6f8fed5..b379bae 100755 --- a/tests/test_async.py +++ b/tests/test_async.py @@ -23,7 +23,7 @@ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public # License for more details. -from testutils import unittest, skip_before_postgres +from testutils import unittest, skip_before_postgres, slow import psycopg2 from psycopg2 import extensions @@ -318,6 +318,7 @@ class AsyncTests(ConnectingTestCase): self.assert_(conn.async) conn.close() + @slow def test_flush_on_write(self): # a very large query requires a flush loop to be sent to the backend curs = self.conn.cursor() |