diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-10-28 22:28:58 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-10-29 02:01:20 -0700 |
commit | ca004366b863f23ecadd7a5bb3525dda4311f367 (patch) | |
tree | e5567c2e6fb7169b92610b838638af4b97c8d8cb /test/conftest.py | |
parent | 4d13713c515796afa535e980b15fa0c2c86ba0eb (diff) | |
download | kafka-python-ca004366b863f23ecadd7a5bb3525dda4311f367.tar.gz |
Migrate from `Unittest` to `pytest`
I only migrated tests that will continue to be used even after the
removal of the old `Simple*` classes in #1196.
The `decorator` in tox is leftover from a previous usage that was
already removed from the code but not from tox.
Diffstat (limited to 'test/conftest.py')
-rw-r--r-- | test/conftest.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/conftest.py b/test/conftest.py index a751d95..ffaae03 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,7 +1,5 @@ from __future__ import absolute_import -import inspect - import pytest from test.fixtures import KafkaFixture, ZookeeperFixture, random_string, version as kafka_version |