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_copy.py | |
parent | 8a2e9eabcae94013b4d5987b4bc31487efdef102 (diff) | |
download | psycopg2-fast-test.tar.gz |
Further skipping of slow testsfast-test
Diffstat (limited to 'tests/test_copy.py')
-rwxr-xr-x | tests/test_copy.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_copy.py b/tests/test_copy.py index 8cbe4ea..3aa509b 100755 --- a/tests/test_copy.py +++ b/tests/test_copy.py @@ -312,6 +312,7 @@ class CopyTests(ConnectingTestCase): curs.copy_from, StringIO('aaa\nbbb\nccc\n'), 'tcopy') self.assertEqual(curs.rowcount, -1) + @slow def test_copy_from_segfault(self): # issue #219 script = ("""\ @@ -330,6 +331,7 @@ conn.close() proc.communicate() self.assertEqual(0, proc.returncode) + @slow def test_copy_to_segfault(self): # issue #219 script = ("""\ |