diff options
Diffstat (limited to 'tests/test_asyncio/test_commands.py')
-rw-r--r-- | tests/test_asyncio/test_commands.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/test_asyncio/test_commands.py b/tests/test_asyncio/test_commands.py index 913f05b..eaae185 100644 --- a/tests/test_asyncio/test_commands.py +++ b/tests/test_asyncio/test_commands.py @@ -4,18 +4,11 @@ Tests async overrides of commands from their mixins import binascii import datetime import re -import sys import time from string import ascii_letters 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 import redis from redis import exceptions |