@@ -111,6 +111,7 @@ def same_address(
111
111
)
112
112
113
113
114
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
114
115
async def test_connects_to_same_address_if_same_id_replica (
115
116
connection_pool_replica_mock : SentinelConnectionPool ,
116
117
) -> None :
@@ -128,6 +129,7 @@ async def test_connects_to_same_address_if_same_id_replica(
128
129
)
129
130
130
131
132
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
131
133
async def test_connects_to_same_conn_object_if_same_id_and_conn_released_replica (
132
134
connection_pool_replica_mock : SentinelConnectionPool ,
133
135
) -> None :
@@ -148,6 +150,7 @@ async def test_connects_to_same_conn_object_if_same_id_and_conn_released_replica
148
150
)
149
151
150
152
153
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
151
154
async def test_connects_to_diff_address_if_no_iter_req_id_replica (
152
155
connection_pool_replica_mock : SentinelConnectionPool ,
153
156
) -> None :
@@ -173,6 +176,7 @@ async def test_connects_to_diff_address_if_no_iter_req_id_replica(
173
176
)
174
177
175
178
179
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
176
180
async def test_connects_to_same_address_if_same_iter_req_id_master (
177
181
connection_pool_master_mock : SentinelConnectionPool ,
178
182
) -> None :
@@ -190,6 +194,7 @@ async def test_connects_to_same_address_if_same_iter_req_id_master(
190
194
)
191
195
192
196
197
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
193
198
async def test_connects_to_same_conn_object_if_same_iter_req_id_and_released_master (
194
199
connection_pool_master_mock : SentinelConnectionPool ,
195
200
) -> None :
@@ -209,6 +214,7 @@ async def test_connects_to_same_conn_object_if_same_iter_req_id_and_released_mas
209
214
)
210
215
211
216
217
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
212
218
async def test_connects_to_same_address_if_no_iter_req_id_master (
213
219
connection_pool_master_mock : SentinelConnectionPool ,
214
220
) -> None :
@@ -234,6 +240,7 @@ async def test_connects_to_same_address_if_no_iter_req_id_master(
234
240
)
235
241
236
242
243
+ @pytest .mark .skipif (HIREDIS_AVAILABLE , reason = "PythonParser only" )
237
244
async def test_scan_iter_family_cleans_up (
238
245
connection_pool_replica_mock : SentinelConnectionPool ,
239
246
):
0 commit comments