Skip to content

Commit e60ad1c

Browse files
committed
fix
1 parent 24413b1 commit e60ad1c

File tree

7 files changed

+0
-17
lines changed

7 files changed

+0
-17
lines changed

tests/test_asyncio/conftest.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@
2121

2222
from .compat import mock
2323

24-
if sys.version_info[0:2] == (3, 6):
25-
import pytest as pytest_asyncio
26-
27-
pytestmark = pytest.mark.asyncio
28-
else:
29-
import pytest_asyncio
30-
3124

3225
async def _get_info(redis_url):
3326
client = redis.Redis.from_url(redis_url)

tests/test_asyncio/test_bloom.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
import pytest
42

53
import redis.asyncio as redis

tests/test_asyncio/test_graph.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
from redis.exceptions import ResponseError
77
from tests.conftest import skip_if_redis_enterprise
88

9-
pytestmark = pytest.mark.asyncio
10-
119

1210
@pytest.mark.redismod
1311
async def test_bulk(modclient):

tests/test_asyncio/test_monitor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
import pytest
42

53
from tests.conftest import skip_if_redis_enterprise, skip_ifnot_redis_enterprise

tests/test_asyncio/test_pipeline.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
import pytest
42

53
import redis

tests/test_asyncio/test_search.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import bz2
22
import csv
33
import os
4-
import sys
54
import time
65
from io import TextIOWrapper
76

tests/test_asyncio/test_timeseries.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
import time
32
from time import sleep
43

0 commit comments

Comments
 (0)