diff options
Diffstat (limited to 'tests/test_asyncio/test_scripting.py')
-rw-r--r-- | tests/test_asyncio/test_scripting.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/test_asyncio/test_scripting.py b/tests/test_asyncio/test_scripting.py index 406ab20..3776d12 100644 --- a/tests/test_asyncio/test_scripting.py +++ b/tests/test_asyncio/test_scripting.py @@ -1,13 +1,5 @@ -import sys - import pytest - -if sys.version_info[0:2] == (3, 6): - import pytest as pytest_asyncio - - pytestmark = pytest.mark.asyncio -else: - import pytest_asyncio +import pytest_asyncio from redis import exceptions from tests.conftest import skip_if_server_version_lt |