Skip to content

Commit

Permalink
skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dvora-h committed Jan 21, 2024
1 parent d544636 commit ff7847f
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-redis-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
test-type: ['cluster']
test-type: ['standalone']
connection-type: ['hiredis', 'plain']
re-build: ["7.2.4-92"]
env:
Expand Down
9 changes: 8 additions & 1 deletion tests/test_bloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
from redis.exceptions import ModuleError, RedisError
from redis.utils import HIREDIS_AVAILABLE

from .conftest import assert_resp_response, is_resp2_connection, skip_ifmodversion_lt
from .conftest import (
assert_resp_response,
is_resp2_connection,
skip_ifmodversion_lt,
skip_if_redis_enterprise,
)


def intlist(obj):
Expand Down Expand Up @@ -248,6 +253,7 @@ def test_cms(client):


@pytest.mark.onlynoncluster
@skip_if_redis_enterprise()
def test_cms_merge(client):
assert client.cms().initbydim("A", 1000, 5)
assert client.cms().initbydim("B", 1000, 5)
Expand Down Expand Up @@ -373,6 +379,7 @@ def test_tdigest_reset(client):


@pytest.mark.onlynoncluster
@skip_if_redis_enterprise()
def test_tdigest_merge(client):
assert client.tdigest().create("to-tDigest", 10)
assert client.tdigest().create("from-tDigest", 10)
Expand Down

0 comments on commit ff7847f

Please sign in to comment.