diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-03 18:47:19 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-10 10:55:58 -0800 |
commit | 389f6c08d9536060184bfd5c8ea2491a4a91c2fb (patch) | |
tree | f85e494ab9c681494616ec6bb9b9d01852c62f90 /tests/test_module.py | |
parent | c86e682153f4cb8d99e490b2af964f3f11e3489f (diff) | |
download | psycopg2-389f6c08d9536060184bfd5c8ea2491a4a91c2fb.tar.gz |
Avoid installing tests to site-packages
For library end users, there is no need to install tests alongside the
package itself. This keeps the tests available for development without
adding extra packages to user's site-packages directory. Reduces the
size of the installed package. Avoids accidental execution of test code
by an installed package.
Diffstat (limited to 'tests/test_module.py')
-rwxr-xr-x | tests/test_module.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_module.py b/tests/test_module.py index e1c065d..ddd6b02 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -28,7 +28,7 @@ from subprocess import Popen import unittest from .testutils import (skip_before_postgres, - ConnectingTestCase, skip_copy_if_green, slow) + ConnectingTestCase, skip_copy_if_green, slow, StringIO) import psycopg2 @@ -217,7 +217,6 @@ class ExceptionsTestCase(ConnectingTestCase): @skip_copy_if_green def test_diagnostics_copy(self): - from StringIO import StringIO f = StringIO() cur = self.conn.cursor() try: |