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:51:07 -0800 |
commit | 1a8e992fcc87b2d15911b60cc9220ec50a70a4ff (patch) | |
tree | b24d491d6ecff95cfbee78409a037a49f182b744 /tests/test_connection.py | |
parent | 9de46e416e5ac1be1c5ff170d1c1ada5b8d7278f (diff) | |
download | psycopg2-1a8e992fcc87b2d15911b60cc9220ec50a70a4ff.tar.gz |
Use relative imports throughout tests
The tests relied on Python2 relative import semantics. Python3 changed
import semantics to always search sys.path by default. To import using a
relative path it must have a leading dot.
Forward compatible with newer Pythons.
Works towards the goal of moving tests outside of the installed package.
For more information, see PEP-328:
https://www.python.org/dev/peps/pep-0328/
Diffstat (limited to 'tests/test_connection.py')
-rwxr-xr-x | tests/test_connection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_connection.py b/tests/test_connection.py index 369c204..02db264 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -34,12 +34,12 @@ import psycopg2 import psycopg2.errorcodes from psycopg2 import extensions as ext -from testutils import ( +from .testutils import ( unittest, decorate_all_tests, skip_if_no_superuser, skip_before_postgres, skip_after_postgres, skip_before_libpq, ConnectingTestCase, skip_if_tpc_disabled, skip_if_windows, slow) -from testconfig import dsn, dbname +from .testconfig import dsn, dbname class ConnectionTests(ConnectingTestCase): |