Skip to content

Commit 3c797f6

Browse files
committed
Skipped test on version 3.9
1 parent 6603576 commit 3c797f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import copy
22
import platform
33
import socket
4+
import sys
45
import threading
56
import types
67
from typing import Any
@@ -249,6 +250,7 @@ def get_redis_connection():
249250
r1.close()
250251

251252

253+
@pytest.mark.skipif(sys.version_info == (3, 9), reason="Flacky test on Python 3.9")
252254
@pytest.mark.parametrize("from_url", (True, False), ids=("from_url", "from_args"))
253255
def test_redis_connection_pool(request, from_url):
254256
"""Verify that basic Redis instances using `connection_pool`

0 commit comments

Comments
 (0)