Skip to content

Commit ff7847f

Browse files
committed
skip tests
1 parent d544636 commit ff7847f

File tree

5 files changed

+95
-3
lines changed

5 files changed

+95
-3
lines changed

.github/workflows/test-redis-enterprise.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ['3.10']
33-
test-type: ['cluster']
33+
test-type: ['standalone']
3434
connection-type: ['hiredis', 'plain']
3535
re-build: ["7.2.4-92"]
3636
env:

tests/test_bloom.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
from redis.exceptions import ModuleError, RedisError
66
from redis.utils import HIREDIS_AVAILABLE
77

8-
from .conftest import assert_resp_response, is_resp2_connection, skip_ifmodversion_lt
8+
from .conftest import (
9+
assert_resp_response,
10+
is_resp2_connection,
11+
skip_ifmodversion_lt,
12+
skip_if_redis_enterprise,
13+
)
914

1015

1116
def intlist(obj):
@@ -248,6 +253,7 @@ def test_cms(client):
248253

249254

250255
@pytest.mark.onlynoncluster
256+
@skip_if_redis_enterprise()
251257
def test_cms_merge(client):
252258
assert client.cms().initbydim("A", 1000, 5)
253259
assert client.cms().initbydim("B", 1000, 5)
@@ -373,6 +379,7 @@ def test_tdigest_reset(client):
373379

374380

375381
@pytest.mark.onlynoncluster
382+
@skip_if_redis_enterprise()
376383
def test_tdigest_merge(client):
377384
assert client.tdigest().create("to-tDigest", 10)
378385
assert client.tdigest().create("from-tDigest", 10)

0 commit comments

Comments
 (0)