Skip to content

Commit

Permalink
Disable Redis cluster tests (#2327)
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
  • Loading branch information
felixwang9817 authored and adchia committed Mar 4, 2022
1 parent ca23aa2 commit e2b238a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
9 changes: 2 additions & 7 deletions sdk/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
)
from tests.integration.feature_repos.repo_configuration import (
FULL_REPO_CONFIGS,
REDIS_CLUSTER_CONFIG,
REDIS_CONFIG,
Environment,
construct_test_environment,
Expand Down Expand Up @@ -171,14 +170,10 @@ def cleanup():
return e


@pytest.fixture(
scope="session",
params=[REDIS_CONFIG, REDIS_CLUSTER_CONFIG],
ids=[str(c) for c in [REDIS_CONFIG, REDIS_CLUSTER_CONFIG]],
)
@pytest.fixture()
def local_redis_environment(request, worker_id):
e = construct_test_environment(
IntegrationTestRepoConfig(online_store=request.param), worker_id=worker_id
IntegrationTestRepoConfig(online_store=REDIS_CONFIG), worker_id=worker_id
)

def cleanup():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
[
# Redis configurations
IntegrationTestRepoConfig(online_store=REDIS_CONFIG),
IntegrationTestRepoConfig(online_store=REDIS_CLUSTER_CONFIG),
# GCP configurations
IntegrationTestRepoConfig(
provider="gcp",
Expand Down

0 comments on commit e2b238a

Please sign in to comment.