diff options
author | Dana Powers <dana.powers@rd.io> | 2016-01-23 22:46:17 -0800 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2016-01-24 17:33:09 -0800 |
commit | acd1ae4d74c64ee6320c1709116a3e2bfcfaac7c (patch) | |
tree | 961a7f1591454899dc43e42ac8189a7d9d14e64a /test/fixtures.py | |
parent | 34a18aea78edcccd8e4b6aba8a1394e1e4d098df (diff) | |
download | kafka-python-acd1ae4d74c64ee6320c1709116a3e2bfcfaac7c.tar.gz |
Move pytest broker/zk fixtures to test.conftest
Diffstat (limited to 'test/fixtures.py')
-rw-r--r-- | test/fixtures.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixtures.py b/test/fixtures.py index 91a67c1..2613a41 100644 --- a/test/fixtures.py +++ b/test/fixtures.py @@ -5,10 +5,11 @@ import shutil import subprocess import tempfile import time -from six.moves import urllib import uuid +from six.moves import urllib from six.moves.urllib.parse import urlparse # pylint: disable=E0611,F0401 + from test.service import ExternalService, SpawnedService from test.testutil import get_open_port |