diff --git a/sdk/python/tests/conftest.py b/sdk/python/tests/conftest.py index 624b610fe4..49f32379a3 100644 --- a/sdk/python/tests/conftest.py +++ b/sdk/python/tests/conftest.py @@ -30,7 +30,6 @@ ) from tests.integration.feature_repos.repo_configuration import ( FULL_REPO_CONFIGS, - REDIS_CLUSTER_CONFIG, REDIS_CONFIG, Environment, construct_test_environment, @@ -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(): diff --git a/sdk/python/tests/integration/feature_repos/repo_configuration.py b/sdk/python/tests/integration/feature_repos/repo_configuration.py index 976c807acb..d7f843c645 100644 --- a/sdk/python/tests/integration/feature_repos/repo_configuration.py +++ b/sdk/python/tests/integration/feature_repos/repo_configuration.py @@ -70,7 +70,6 @@ [ # Redis configurations IntegrationTestRepoConfig(online_store=REDIS_CONFIG), - IntegrationTestRepoConfig(online_store=REDIS_CLUSTER_CONFIG), # GCP configurations IntegrationTestRepoConfig( provider="gcp",