Skip to content

Commit 91b2344

Browse files
committed
Remove unnecessary skip marks
1 parent 6c41635 commit 91b2344

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/test_asyncio/test_pubsub.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -989,9 +989,6 @@ async def loop_step_listen(self):
989989

990990
@pytest.mark.onlynoncluster
991991
class TestBaseException:
992-
@pytest.mark.skipif(
993-
sys.version_info < (3, 8), reason="requires python 3.8 or higher"
994-
)
995992
async def test_outer_timeout(self, r: redis.Redis):
996993
"""
997994
Using asyncio_timeout manually outside the inner method timeouts works.
@@ -1023,9 +1020,6 @@ async def get_msg_or_timeout(timeout=0.1):
10231020
# the timeout on the read should not cause disconnect
10241021
assert pubsub.connection.is_connected
10251022

1026-
@pytest.mark.skipif(
1027-
sys.version_info < (3, 8), reason="requires python 3.8 or higher"
1028-
)
10291023
async def test_base_exception(self, r: redis.Redis):
10301024
"""
10311025
Manually trigger a BaseException inside the parser's .read_response method

0 commit comments

Comments
 (0)