summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_pipeline.py
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-07-27 16:18:41 +0300
committerGitHub <noreply@github.com>2022-07-27 16:18:41 +0300
commit607a59ad6ff0cabc7b0af7480f42043aebc2a33b (patch)
tree9aed66dc63dabb925c08203c2dc82b057305e85a /tests/test_asyncio/test_pipeline.py
parentf665bd306dc843cec3e8fa01d6f4061385d1812e (diff)
downloadredis-py-607a59ad6ff0cabc7b0af7480f42043aebc2a33b.tar.gz
Drop python 3.6 support (#2306)
Diffstat (limited to 'tests/test_asyncio/test_pipeline.py')
-rw-r--r--tests/test_asyncio/test_pipeline.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_asyncio/test_pipeline.py b/tests/test_asyncio/test_pipeline.py
index 33391d0..d613f49 100644
--- a/tests/test_asyncio/test_pipeline.py
+++ b/tests/test_asyncio/test_pipeline.py
@@ -1,5 +1,3 @@
-import sys
-
import pytest
import redis
@@ -7,9 +5,6 @@ from tests.conftest import skip_if_server_version_lt
from .conftest import wait_for_command
-if sys.version_info[0:2] == (3, 6):
- pytestmark = pytest.mark.asyncio
-
class TestPipeline:
@pytest.mark.onlynoncluster