diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/__init__.py | 2 | ||||
-rw-r--r-- | test/conftest.py | 2 | ||||
-rw-r--r-- | test/fixtures.py | 2 | ||||
-rw-r--r-- | test/service.py | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/test/__init__.py b/test/__init__.py index 0eb2edc..3d2ba3d 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import sys if sys.version_info < (2, 7): diff --git a/test/conftest.py b/test/conftest.py index c2ef1dd..79ad074 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import os import pytest diff --git a/test/fixtures.py b/test/fixtures.py index b8d6fc3..637896d 100644 --- a/test/fixtures.py +++ b/test/fixtures.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import atexit import logging import os diff --git a/test/service.py b/test/service.py index 8895a10..47fb846 100644 --- a/test/service.py +++ b/test/service.py @@ -1,3 +1,5 @@ +from __future__ import absolute_import + import logging import os import re |